Commit 5cd97e8c by Michael DeHaan

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

apt: update index before trying to autoinstall python-apt
parents 19d4c1ac 2d805ae5
...@@ -350,7 +350,7 @@ def main(): ...@@ -350,7 +350,7 @@ def main():
if not HAS_PYTHON_APT: if not HAS_PYTHON_APT:
try: 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 global apt, apt_pkg
import apt import apt
import apt_pkg 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