mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-26 17:05:36 -04:00
Improve urpmi call. Thanks Tomasz Paweł Gajc for the patch.
This commit is contained in:
parent
3781e3415d
commit
2cd9c7c0fa
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ class PackageManager:
|
|||
elif self.backend == "dnf":
|
||||
check_chroot_call(["dnf", "install", "-y"] + pkgs)
|
||||
elif self.backend == "urpmi":
|
||||
check_chroot_call(["urpmi"] + pkgs)
|
||||
check_chroot_call(["urpmi", "--download-all", "--no-suggests", "--no-verify-rpm", "--fastunsafe", "--ignoresize", "--nolock", "--auto"] + pkgs)
|
||||
elif self.backend == "apt":
|
||||
check_chroot_call(["apt-get", "-q", "-y", "install"] + pkgs)
|
||||
elif self.backend == "pacman":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue