diff options
Diffstat (limited to 'main/lxc/lxc.initd')
-rw-r--r-- | main/lxc/lxc.initd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/main/lxc/lxc.initd b/main/lxc/lxc.initd index 31bfbd44ca..ae844872a5 100644 --- a/main/lxc/lxc.initd +++ b/main/lxc/lxc.initd @@ -58,7 +58,7 @@ start() { rootpath=$(lxc_get_var lxc.rootfs) checkpath -d ${pidfile%/*} - ebegin "Starting ${CONTAINER}" + ebegin "Starting container ${CONTAINER}" start-stop-daemon --start $command \ --pidfile $pidfile \ --wait 500 \ @@ -75,20 +75,20 @@ start() { stop() { checkconfig || return 1 - ebegin "Shutting down system in ${CONTAINER}" + ebegin "Shutting down system in container ${CONTAINER}" start-stop-daemon --stop --pidfile ${pidfile} \ --retry ${POWEROFF_SIGNAL:-SIGUSR2}/${TIMEOUT:-30} \ --progress eend $? - ebegin "Stopping ${CONTAINER}" + ebegin "Stopping containter ${CONTAINER}" lxc-stop -n ${CONTAINER} eend $? } reboot() { checkconfig || return 1 - ebegin "Sending reboot signal to $CONTAINER" + ebegin "Sending reboot signal to container $CONTAINER" start-stop-daemon --signal ${RESTART_SIG:-SIGTERM} \ --pidfile ${pidfile} eend $? |