From dd1b44acd5231ffef7992f784ea92726b85e6eb9 Mon Sep 17 00:00:00 2001 From: Renan Ivo Date: Sun, 13 Oct 2013 10:21:37 -0300 Subject: [PATCH] create install_options parameter to homebrew module --- library/packaging/homebrew | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/library/packaging/homebrew b/library/packaging/homebrew index add06d64b65..a359e827103 100644 --- a/library/packaging/homebrew +++ b/library/packaging/homebrew @@ -42,6 +42,11 @@ options: required: false default: "no" choices: [ "yes", "no" ] + install_options: + description: + - options flags to install a package + required: false + default: "" notes: [] ''' EXAMPLES = ''' @@ -49,6 +54,7 @@ EXAMPLES = ''' - homebrew: name=foo state=present update_homebrew=yes - homebrew: name=foo state=absent - homebrew: name=foo,bar state=absent +- homebrew: name=foo state=present install_options=with-baz,enable-debug ''' @@ -98,7 +104,7 @@ def remove_packages(module, brew_path, packages): module.exit_json(changed=False, msg="package(s) already absent") -def install_packages(module, brew_path, packages): +def install_packages(module, brew_path, packages, options): """ Installs one or more packages if not already installed. """ installed_count = 0 @@ -109,7 +115,8 @@ def install_packages(module, brew_path, packages): if module.check_mode: module.exit_json(changed=True) - rc, out, err = module.run_command([brew_path, 'install', package]) + + rc, out, err = module.run_command([brew_path, 'install', package, options]) if not query_package(module, brew_path, package): module.fail_json(msg="failed to install %s: %s" % (package, out.strip())) @@ -121,13 +128,22 @@ def install_packages(module, brew_path, packages): module.exit_json(changed=False, msg="package(s) already present") +def generate_options_string(install_options): + options_str = '' + + for option in install_options: + options_str += ' --%s' % option + + return options_str.strip() + def main(): module = AnsibleModule( argument_spec = dict( name = dict(aliases=["pkg"], required=True), state = dict(default="present", choices=["present", "installed", "absent", "removed"]), - update_homebrew = dict(default="no", aliases=["update-brew"], type='bool') + update_homebrew = dict(default="no", aliases=["update-brew"], type='bool'), + install_options = dict(default="", aliases=["options"], type='list') ), supports_check_mode=True ) @@ -142,7 +158,8 @@ def main(): pkgs = p["name"].split(",") if p["state"] in ["present", "installed"]: - install_packages(module, brew_path, pkgs) + opt = generate_options_string(p["install_options"]) + install_packages(module, brew_path, pkgs, opt) elif p["state"] in ["absent", "removed"]: remove_packages(module, brew_path, pkgs)