Merge pull request #8292 from jimi-c/issue_7863_deb_with_items

Allow deb package installation via with_items
reviewable/pr18780/r1
James Cammarata 10 years ago
commit 67899d95fd

@ -291,38 +291,46 @@ def install(m, pkgspec, cache, upgrade=False, default_release=None,
else: else:
return (True, dict(changed=False)) return (True, dict(changed=False))
def install_deb(m, debfile, cache, force, install_recommends, dpkg_options): def install_deb(m, debs, cache, force, install_recommends, dpkg_options):
changed=False changed=False
pkg = apt.debfile.DebPackage(debfile) deps_to_install = []
pkgs_to_install = []
for deb_file in debs.split(','):
pkg = apt.debfile.DebPackage(deb_file)
# Check if it's already installed # Check if it's already installed
if pkg.compare_to_version_in_cache() == pkg.VERSION_SAME: if pkg.compare_to_version_in_cache() == pkg.VERSION_SAME:
m.exit_json(changed=False) continue
# Check if package is installable # Check if package is installable
if not pkg.check(): if not pkg.check():
m.fail_json(msg=pkg._failure_string) m.fail_json(msg=pkg._failure_string)
(success, retvals) = install(m=m, pkgspec=pkg.missing_deps, # add any missing deps to the list of deps we need
cache=cache, # to install so they're all done in one shot
deps_to_install.extend(pkg.missing_deps)
# and add this deb to the list of packages to install
pkgs_to_install.append(deb_file)
# install the deps through apt
retvals = {}
if len(deps_to_install) > 0:
(success, retvals) = install(m=m, pkgspec=deps_to_install, cache=cache,
install_recommends=install_recommends, install_recommends=install_recommends,
dpkg_options=expand_dpkg_options(dpkg_options)) dpkg_options=expand_dpkg_options(dpkg_options))
if not success: if not success:
m.fail_json(**retvals) m.fail_json(**retvals)
changed = retvals['changed'] changed = retvals.get('changed', False)
if len(pkgs_to_install) > 0:
options = ' '.join(["--%s"% x for x in dpkg_options.split(",")]) options = ' '.join(["--%s"% x for x in dpkg_options.split(",")])
if m.check_mode: if m.check_mode:
options += " --simulate" options += " --simulate"
if force: if force:
options += " --force-yes" options += " --force-yes"
cmd = "dpkg %s -i %s" % (options, " ".join(pkgs_to_install))
cmd = "dpkg %s -i %s" % (options, debfile)
rc, out, err = m.run_command(cmd) rc, out, err = m.run_command(cmd)
if "stdout" in retvals: if "stdout" in retvals:
stdout = retvals["stdout"] + out stdout = retvals["stdout"] + out
else: else:
@ -331,10 +339,13 @@ def install_deb(m, debfile, cache, force, install_recommends, dpkg_options):
stderr = retvals["stderr"] + err stderr = retvals["stderr"] + err
else: else:
stderr = err stderr = err
if rc == 0: if rc == 0:
m.exit_json(changed=True, stdout=stdout, stderr=stderr) m.exit_json(changed=True, stdout=stdout, stderr=stderr)
else: else:
m.fail_json(msg="%s failed" % cmd, stdout=stdout, stderr=stderr) m.fail_json(msg="%s failed" % cmd, stdout=stdout, stderr=stderr)
else:
m.exit_json(changed=changed, stdout=retvals.get('stdout',''), stderr=retvals.get('stderr',''))
def remove(m, pkgspec, cache, purge=False, def remove(m, pkgspec, cache, purge=False,
dpkg_options=expand_dpkg_options(DPKG_OPTIONS)): dpkg_options=expand_dpkg_options(DPKG_OPTIONS)):

Loading…
Cancel
Save