Merge branch 'libvirt-support' into 'master'

Check for libvirt specific shutoff message

See merge request !262
This commit is contained in:
Michael Pöhn 2017-05-02 07:39:51 +00:00
commit e7e97654b1

View file

@ -473,7 +473,7 @@ while not ready:
sys.exit(1) sys.exit(1)
for line in out.splitlines(): for line in out.splitlines():
if line.startswith("default"): if line.startswith("default"):
if line.find("poweroff") != -1: if line.find("poweroff") != -1 or line.find("shutoff") != 1:
ready = True ready = True
else: else:
print("Status: " + line) print("Status: " + line)