mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-13 09:34:21 -07:00
Explicit check of return code for autoinstallation of python-apt added
This will allow easier debugging through more meaningful error message.
This commit is contained in:
parent
ae29e43f93
commit
8bdd96b273
1 changed files with 1 additions and 1 deletions
|
@ -432,7 +432,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', use_unsafe_shell=True)
|
module.run_command('apt-get update && apt-get install python-apt -y -q', use_unsafe_shell=True, check_rc=True)
|
||||||
global apt, apt_pkg
|
global apt, apt_pkg
|
||||||
import apt
|
import apt
|
||||||
import apt_pkg
|
import apt_pkg
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue