Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
8349c04d
Commit
8349c04d
authored
Oct 14, 2013
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4488 from renanivo/devel
create install_options parameter for homebrew module
parents
aa57e75f
776de30e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
5 deletions
+28
-5
library/packaging/homebrew
+28
-5
No files found.
library/packaging/homebrew
View file @
8349c04d
...
...
@@ -24,7 +24,7 @@ author: Andrew Dunham
short_description: Package manager for Homebrew
description:
- Manages Homebrew packages
version_added: "1.
1
"
version_added: "1.
4
"
options:
name:
description:
...
...
@@ -42,6 +42,11 @@ options:
required: false
default: "no"
choices: [ "yes", "no" ]
install_options:
description:
- options flags to install a package
required: false
default: null
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,11 @@ 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
])
if
options
:
rc
,
out
,
err
=
module
.
run_command
([
brew_path
,
'install'
,
package
,
options
])
else
:
rc
,
out
,
err
=
module
.
run_command
([
brew_path
,
'install'
,
package
])
if
not
query_package
(
module
,
brew_path
,
package
):
module
.
fail_json
(
msg
=
"failed to install
%
s:
%
s"
%
(
package
,
out
.
strip
()))
...
...
@@ -121,13 +131,25 @@ def install_packages(module, brew_path, packages):
module
.
exit_json
(
changed
=
False
,
msg
=
"package(s) already present"
)
def
generate_options_string
(
install_options
):
if
install_options
is
None
:
return
''
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
=
None
,
aliases
=
[
"options"
],
type
=
'list'
)
),
supports_check_mode
=
True
)
...
...
@@ -142,7 +164,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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment