mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Merge pull request #6518 from spiroid/devel
fix: bug in apt module when python-apt is not available
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user