Prevent reinstallation in case of group package

pull/18777/head
saez0pub 9 years ago committed by Matt Clay
parent da668dca56
commit 029b608e1e

@ -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:

Loading…
Cancel
Save