Commit 0981488d by Jonathan Dray

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

parent 47aff528
......@@ -377,7 +377,7 @@ def main():
if not HAS_PYTHON_APT:
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
import apt
import apt_pkg
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment