From 6c7be7d97d9320df1d192c33efb718fe0ecfd018 Mon Sep 17 00:00:00 2001 From: saez0pub Date: Sat, 13 Feb 2016 15:37:08 +0100 Subject: [PATCH] Prevent reinstallation in case of group package --- packaging/os/pacman.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/os/pacman.py b/packaging/os/pacman.py index 81b9c907772..e288a1206fb 100644 --- a/packaging/os/pacman.py +++ b/packaging/os/pacman.py @@ -234,7 +234,7 @@ def install_packages(module, pacman_path, state, packages, package_files): else: params = '-S %s' % package - cmd = "%s %s --noconfirm" % (pacman_path, params) + cmd = "%s %s --noconfirm --needed" % (pacman_path, params) rc, stdout, stderr = module.run_command(cmd, check_rc=False) if rc != 0: