now module fails gracefully instead of stacktrace when trying to install missing deb file
This commit is contained in:
parent
4ba2d55589
commit
611e8b59d6
1 changed files with 4 additions and 1 deletions
|
@ -363,7 +363,10 @@ def install_deb(m, debs, cache, force, install_recommends, dpkg_options):
|
|||
deps_to_install = []
|
||||
pkgs_to_install = []
|
||||
for deb_file in debs.split(','):
|
||||
pkg = apt.debfile.DebPackage(deb_file)
|
||||
try:
|
||||
pkg = apt.debfile.DebPackage(deb_file)
|
||||
except SystemError, e:
|
||||
m.fail_json(msg="Error: %s\nSystem Error: %s" % (pkg._failure_string,str(e)))
|
||||
|
||||
# Check if it's already installed
|
||||
if pkg.compare_to_version_in_cache() == pkg.VERSION_SAME:
|
||||
|
|
Loading…
Reference in a new issue