vagrant-lxc-base-boxes/common/utils.sh

34 lines
710 B
Bash
Raw Normal View History

2014-03-25 03:26:19 +00:00
#!/bin/bash
utils.lxc.attach() {
cmd="$@"
log "Running [${cmd}] inside '${CONTAINER}' container..."
(lxc-attach -n ${CONTAINER} -- $cmd) &>> ${LOG}
2014-03-25 03:26:19 +00:00
}
utils.lxc.pipetofile() {
log "Sending piped content inside '${CONTAINER}' at $1 ..."
lxc-attach -n ${CONTAINER} -- /bin/bash -c "tee $1 > /dev/null" &>> ${LOG}
}
utils.lxc.runscript() {
cat $1 | utils.lxc.pipetofile /script.sh
utils.lxc.attach /bin/bash /script.sh
}
2014-03-25 03:26:19 +00:00
utils.lxc.start() {
lxc-start -d -n ${CONTAINER} &>> ${LOG} || true
2014-03-25 03:26:19 +00:00
}
utils.lxc.stop() {
lxc-stop -n ${CONTAINER} &>> ${LOG} || true
2014-03-25 03:26:19 +00:00
}
utils.lxc.destroy() {
lxc-destroy -n ${CONTAINER} &>> ${LOG}
2014-03-25 03:26:19 +00:00
}
utils.lxc.create() {
lxc-create -n ${CONTAINER} "$@" &>> ${LOG}
2014-03-25 03:26:19 +00:00
}