1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

fix: bug in apt when python-apt is not present apt-get was not called due to unsafe call

This commit is contained in:
Jonathan Dray 2014-03-17 02:24:12 +01:00
parent 47aff528b9
commit 0981488df7

View file

@ -377,7 +377,7 @@ def main():
if not HAS_PYTHON_APT: if not HAS_PYTHON_APT:
try: try:
module.run_command('apt-get update && apt-get install python-apt -y -q') module.run_command('apt-get update && apt-get install python-apt -y -q', use_unsafe_shell=True)
global apt, apt_pkg global apt, apt_pkg
import apt import apt
import apt_pkg import apt_pkg