diff options
Diffstat (limited to 'ubuntu14.04-onbuild')
-rwxr-xr-x | ubuntu14.04-onbuild/ansible-playbook-wrapper | 29 |
1 files changed, 24 insertions, 5 deletions
diff --git a/ubuntu14.04-onbuild/ansible-playbook-wrapper b/ubuntu14.04-onbuild/ansible-playbook-wrapper index bf137c8..0ba45e6 100755 --- a/ubuntu14.04-onbuild/ansible-playbook-wrapper +++ b/ubuntu14.04-onbuild/ansible-playbook-wrapper | |||
@@ -1,17 +1,36 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | # | 2 | # |
3 | # Simple wrapper for executing ansible-playbook with local connection. | 3 | # Simple wrapper for executing ansible-galaxy and ansible-playbook |
4 | # with local connection. | ||
4 | # | 5 | # |
5 | # USAGE: | 6 | # USAGE: |
6 | # ansible-playbook-wrapper [other ansible-playbook arguments] | 7 | # ansible-playbook-wrapper [other ansible-playbook arguments] |
7 | # | 8 | # |
8 | # ENVIRONMENT VARIABLES: | 9 | # ENVIRONMENT VARIABLES: |
9 | # | 10 | # |
10 | # - PLAYBOOK: playbook filename; default = "playbook.yml" | 11 | # - REQUIREMENTS: requirements filename; default = "requirements.yml" |
11 | # - INVENTORY: inventory filename; default = "/etc/ansible/hosts" | 12 | # - PLAYBOOK: playbook filename; default = "playbook.yml" |
12 | # | 13 | # - INVENTORY: inventory filename; default = "/etc/ansible/hosts" |
14 | # | ||
13 | 15 | ||
14 | 16 | ||
17 | # | ||
18 | # install Galaxy roles, if any | ||
19 | # | ||
20 | |||
21 | if [ -z "$REQUIREMENTS" ]; then | ||
22 | REQUIREMENTS=requirements.yml | ||
23 | fi | ||
24 | |||
25 | if [ -f "$REQUIREMENTS" ]; then | ||
26 | ansible-galaxy install -r $REQUIREMENTS | ||
27 | fi | ||
28 | |||
29 | |||
30 | # | ||
31 | # execute playbook | ||
32 | # | ||
33 | |||
15 | if [ -z "$PLAYBOOK" ]; then | 34 | if [ -z "$PLAYBOOK" ]; then |
16 | PLAYBOOK=playbook.yml | 35 | PLAYBOOK=playbook.yml |
17 | fi | 36 | fi |