summaryrefslogtreecommitdiff
path: root/subplot/qemumgr.py
diff options
context:
space:
mode:
Diffstat (limited to 'subplot/qemumgr.py')
-rwxr-xr-xsubplot/qemumgr.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/subplot/qemumgr.py b/subplot/qemumgr.py
index bfc3f24..69a2ce0 100755
--- a/subplot/qemumgr.py
+++ b/subplot/qemumgr.py
@@ -107,7 +107,7 @@ class QemuSystem:
memory = int(self._memory / MiB)
argv = [
- "/usr/sbin/daemonize",
+ "/usr/bin/daemonize",
"-c",
self._dirname,
"-p",
@@ -140,7 +140,7 @@ class QemuSystem:
subprocess.check_call(argv, stdout=None, stderr=None)
self._pid = int(wait_for(lambda: got_pid(pid_file), 1))
- logging.debug(f"started qemu-system")
+ logging.debug("started qemu-system")
logging.debug(f" argv: {argv}")
logging.debug(f" pid: {self._pid}")
@@ -157,7 +157,7 @@ class QemuSystem:
return True
return None
- return wait_for(ssh_ok, 60, sleep=5)
+ return wait_for(ssh_ok, 120, sleep=5)
def ssh(self, argv):
assert self._username is not None