From 4d7dc6f1de582d1819a4e99636737ae8b4a08f76 Mon Sep 17 00:00:00 2001 From: Anthony F McInerney Date: Tue, 8 Jan 2019 02:39:09 +0000 Subject: [PATCH] fixes #543 qemu -nodefconfig deprecated Use -no-user-config instead. Resolves: rhbz#1904168 (cherry picked from commit f66bff5aa76ec8b26f47f37a584fe3af5e971ed6) Signed-off-by: Brian C. Lane --- src/pylorax/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pylorax/installer.py b/src/pylorax/installer.py index f029a6c9..7558309f 100644 --- a/src/pylorax/installer.py +++ b/src/pylorax/installer.py @@ -166,7 +166,7 @@ class QEMUInstall(object): if not os.path.exists(qemu_cmd[0]): raise InstallError("%s does not exist, cannot run qemu" % qemu_cmd[0]) - qemu_cmd += ["-nodefconfig"] + qemu_cmd += ["-no-user-config"] qemu_cmd += ["-m", str(memory)] if vcpus: qemu_cmd += ["-smp", str(vcpus)]