mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
Check for libvirt specific shutoff message
This commit is contained in:
parent
9f9f0d1a16
commit
9ee96117d8
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue