diff options
author | drochner <drochner> | 2012-02-24 11:44:03 +0000 |
---|---|---|
committer | drochner <drochner> | 2012-02-24 11:44:03 +0000 |
commit | 8025d1e3ebadc0b6d53fc939b11fbfecc2d741b6 (patch) | |
tree | 60de05cdb5ccd5b3f181952b97d2cdb9f7707fec /sysutils | |
parent | 91abb07e5b54752b098a3ede29280a1fa9e2c99b (diff) | |
download | pkgsrc-8025d1e3ebadc0b6d53fc939b11fbfecc2d741b6.tar.gz |
"xl shutdown --halt" doesn't work, remove the "--halt"
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/xentools41/files/xendomains.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysutils/xentools41/files/xendomains.sh b/sysutils/xentools41/files/xendomains.sh index e88b2ec7106..7a8292b6b52 100644 --- a/sysutils/xentools41/files/xendomains.sh +++ b/sysutils/xentools41/files/xendomains.sh @@ -88,7 +88,7 @@ xendomains_stop() # echo "Stopping xen domains." for domain in $(xendomains_list); do - ${ctl_command} shutdown --halt $domain + ${ctl_command} shutdown $domain done while [ $timeout -gt 0 ]; do livedomains=$(xendomains_list) |