enforce no enteractiveness installing pkg with apt
use the same env vars and dpkg options as for the upgrade function also link check mode to --simulate option when installing a pkg fixes #2763
This commit is contained in:
parent
b2c0f642d8
commit
800ca63de6
1 changed files with 7 additions and 4 deletions
11
library/apt
11
library/apt
|
@ -154,15 +154,18 @@ def install(m, pkgspec, cache, upgrade=False, default_release=None, install_reco
|
||||||
else:
|
else:
|
||||||
force_yes = ''
|
force_yes = ''
|
||||||
|
|
||||||
cmd = "%s --option Dpkg::Options::=--force-confold -q -y %s install %s" % (APT_GET_CMD, force_yes, packages)
|
if m.check_mode:
|
||||||
|
check_arg = '--simulate'
|
||||||
|
else:
|
||||||
|
check_arg = ''
|
||||||
|
|
||||||
|
cmd = "%s %s -y %s %s %s install %s" % (APT_ENVVARS, APT_GET_CMD, DPKG_OPTIONS, force_yes, check_arg, packages)
|
||||||
|
|
||||||
if default_release:
|
if default_release:
|
||||||
cmd += " -t '%s'" % (default_release,)
|
cmd += " -t '%s'" % (default_release,)
|
||||||
if not install_recommends:
|
if not install_recommends:
|
||||||
cmd += " --no-install-recommends"
|
cmd += " --no-install-recommends"
|
||||||
|
|
||||||
if m.check_mode:
|
|
||||||
m.exit_json(changed=True)
|
|
||||||
|
|
||||||
rc, out, err = m.run_command(cmd)
|
rc, out, err = m.run_command(cmd)
|
||||||
if rc:
|
if rc:
|
||||||
m.fail_json(msg="'apt-get install %s' failed: %s" % (packages, err))
|
m.fail_json(msg="'apt-get install %s' failed: %s" % (packages, err))
|
||||||
|
|
Loading…
Reference in a new issue