From: Ján Tomko Date: Wed, 3 Jun 2020 11:53:13 +0000 (+0200) Subject: tools: libvirt-guests: correctly check shutdown value X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=cc48360fc9bcc2e5dac6c506de9be4a4eb214538;p=libvirt.git tools: libvirt-guests: correctly check shutdown value The variable cleanup introduced a typo. Signed-off-by: Ján Tomko Fixes: 08071ec0f113bb1fe8dcc263cb6bf87529e8b76b Reported-by: Bronek Kozicki Closes: https://gitlab.com/libvirt/libvirt/-/issues/27 --- diff --git a/tools/libvirt-guests.sh.in b/tools/libvirt-guests.sh.in index 7af24dab3b..534c4d5e0f 100644 --- a/tools/libvirt-guests.sh.in +++ b/tools/libvirt-guests.sh.in @@ -444,7 +444,7 @@ stop() { # last stop was not followed by start [ -f "$LISTFILE" ] && return 0 - if [ "/x$ON_SHUTDOWN" = xshutdown ]; then + if [ "x$ON_SHUTDOWN" = xshutdown ]; then suspending=false if [ $SHUTDOWN_TIMEOUT -lt 0 ]; then gettext "SHUTDOWN_TIMEOUT must be equal or greater than 0"