Pass allow_unauthenticated when installing a deb directly - allowing unauthenticated dependencies (#58771)

* Pass allow_unauthenticated when installing a deb directly - allowing unauthenticated dependencies.

* Add changelog for ansible/ansible#58771
This commit is contained in:
Kevin Dwyer 2019-07-15 06:02:14 -04:00 committed by Martin Krizek
parent 644eead954
commit ec35cbc437
2 changed files with 3 additions and 0 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- apt - fixed issue where allow_unauthenticated did not apply to dependencies when installing a deb directly

View file

@ -750,6 +750,7 @@ def install_deb(m, debs, cache, force, install_recommends, allow_unauthenticated
if deps_to_install:
(success, retvals) = install(m=m, pkgspec=deps_to_install, cache=cache,
install_recommends=install_recommends,
allow_unauthenticated=allow_unauthenticated,
dpkg_options=expand_dpkg_options(dpkg_options))
if not success:
m.fail_json(**retvals)