[packages] Add -Su --noconfirm

- When updating the system (-Su) it may want to install newer
   packages; it asks for confirmation before doing so.

FIXES #1154
This commit is contained in:
Adriaan de Groot 2019-05-27 14:06:05 +02:00
parent 71478fd38d
commit 36fe3ed188

View file

@ -290,7 +290,7 @@ class PMPacman(PackageManager):
check_target_env_call(["pacman", "-Sy"])
def update_system(self):
check_target_env_call(["pacman", "-Su"])
check_target_env_call(["pacman", "-Su", "--noconfirm"])
class PMPortage(PackageManager):