openbsd_pkg: Handle another pkg_add gotcha

* Add '-m' to pkg_add incovation to get access to the "packagename-1.0: ok"
  message.
* Watch for that message if we are about to fail because of stderr in
  package_present().
reviewable/pr18780/r1
Patrik Lundin 11 years ago
parent 72d73bcc70
commit 8646df0a1f

@ -104,9 +104,9 @@ def get_package_state(name, specific_version):
# Function used to make sure a package is present. # Function used to make sure a package is present.
def package_present(name, installed_state, specific_version, module): def package_present(name, installed_state, specific_version, module):
if module.check_mode: if module.check_mode:
install_cmd = 'pkg_add -In' install_cmd = 'pkg_add -Imn'
else: else:
install_cmd = 'pkg_add -I' install_cmd = 'pkg_add -Im'
if installed_state is False: if installed_state is False:
@ -124,10 +124,21 @@ def package_present(name, installed_state, specific_version, module):
if rc: if rc:
changed=False changed=False
else: else:
# Depend on stderr instead and fake the return code. # Depend on stderr instead.
if stderr: if stderr:
rc = 1 # There is a corner case where having an empty directory in
changed=False # installpath prior to the right location will result in a
# "file:/local/package/directory/ is empty" message on stderr
# while still installing the package, so we need to look for
# for a message like "packagename-1.0: ok" just in case.
match = re.search("\W%s-[^:]+: ok\W" % name, stdout)
if match:
# It turns out we were able to install the package.
pass
else:
# We really did fail, fake the return code.
rc = 1
changed=False
if rc == 0: if rc == 0:
if module.check_mode: if module.check_mode:

Loading…
Cancel
Save