Do not use '--loglevel' option when running Anaconda

This option has been removed, see https://github.com/rhinstaller/anaconda/pull/2864
This commit is contained in:
Vojtech Trefny 2020-11-18 10:27:58 +01:00 committed by Brian C. Lane
parent 5ae6dce983
commit 78eec89cda
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ def novirt_install(opts, disk_img, disk_size, cancel_func=None, tar_img=None):
if os.path.isdir(path):
shutil.rmtree(path)
args = ["--kickstart", opts.ks[0], "--cmdline", "--loglevel", "debug"]
args = ["--kickstart", opts.ks[0], "--cmdline"]
if opts.anaconda_args:
for arg in opts.anaconda_args:
args += arg.split(" ", 1)