mirror of
https://abf.rosa.ru/djam/livecd-tools.git
synced 2025-02-23 23:52:58 +00:00
22 lines
1.2 KiB
Diff
22 lines
1.2 KiB
Diff
diff --git a/imgcreate/creator.py b/imgcreate/creator.py
|
|
index 156a95b..02b0cac 100644
|
|
--- a/imgcreate/creator.py
|
|
+++ b/imgcreate/creator.py
|
|
@@ -592,7 +592,7 @@ class ImageCreator(object):
|
|
cmd = ["/usr/sbin/urpmi",
|
|
"--auto", "--split-length", "0",
|
|
"--fastunsafe", "--nolock", "--ignorearch",
|
|
- "--no-verify-rpm", "--no-suggests",
|
|
+ "--no-suggests",
|
|
"--urpmi-root", urpmi_conf,
|
|
"--root", self._instroot,
|
|
'basesystem']
|
|
@@ -605,7 +605,7 @@ class ImageCreator(object):
|
|
subprocess.check_call(cmd)
|
|
|
|
print "Now let's install all other packages"
|
|
- subprocess.check_call(["/usr/sbin/urpmi", "--auto", "--no-suggests", "--fastunsafe", "--debug", "--no-verify", "--urpmi-root", urpmi_conf, "--root", self._instroot] + packages)
|
|
+ subprocess.check_call(["/usr/sbin/urpmi", "--auto", "--no-suggests", "--fastunsafe", "--debug", "--urpmi-root", urpmi_conf, "--root", self._instroot] + packages)
|
|
except subprocess.CalledProcessError, err:
|
|
raise CreatorError("Package installation failed, error code %d" % err.returncode)
|
|
|