"xl shutdown --halt" doesn't work, remove the "--halt"

This commit is contained in:
drochner 2012-02-24 11:44:03 +00:00
parent 53d268722a
commit 852c5d1de0

View file

@ -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)