Merge pull request #1662 from saez0pub/devel

Prevent reinstallation in case of group package
This commit is contained in:
René Moser 2016-03-16 22:28:44 +01:00
commit af9aaed64c

View file

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