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

Merge pull request #5222 from resmo/fix/apt-update

apt: update index before trying to autoinstall python-apt
This commit is contained in:
Michael DeHaan 2013-12-09 18:32:25 -08:00
commit 5cd97e8cf6

View file

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