dpkg does not take a --force-yes option

This commit is contained in:
Henry Finucane 2014-09-29 18:55:34 -07:00 committed by Matt Clay
parent cc6cc6e302
commit 464c502f95

View file

@ -394,7 +394,7 @@ def install_deb(m, debs, cache, force, install_recommends, dpkg_options):
if m.check_mode:
options += " --simulate"
if force:
options += " --force-yes"
options += " --force-all"
cmd = "dpkg %s -i %s" % (options, " ".join(pkgs_to_install))
rc, out, err = m.run_command(cmd)