diff options
author | William Yeh <william.pjyeh@gmail.com> | 2017-09-14 15:57:43 +0800 |
---|---|---|
committer | William Yeh <william.pjyeh@gmail.com> | 2017-09-14 17:56:59 +0800 |
commit | deeab1a101da6710574174dbe47199f9e8900b93 (patch) | |
tree | 95605a54ab972f9b821267be534103803fb84f2a /mini-debian9/ansible-playbook-wrapper | |
parent | 57d366d79328ee5d127d05644b108bd4f7915cdc (diff) | |
download | docker-ansible-deeab1a101da6710574174dbe47199f9e8900b93.tar.gz docker-ansible-deeab1a101da6710574174dbe47199f9e8900b93.tar.zst docker-ansible-deeab1a101da6710574174dbe47199f9e8900b93.zip |
Add: Debian 9 ("Stretch") support.
Diffstat (limited to 'mini-debian9/ansible-playbook-wrapper')
-rwxr-xr-x | mini-debian9/ansible-playbook-wrapper | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/mini-debian9/ansible-playbook-wrapper b/mini-debian9/ansible-playbook-wrapper new file mode 100755 index 0000000..0ba45e6 --- /dev/null +++ b/mini-debian9/ansible-playbook-wrapper | |||
@@ -0,0 +1,49 @@ | |||
1 | #!/bin/sh | ||
2 | # | ||
3 | # Simple wrapper for executing ansible-galaxy and ansible-playbook | ||
4 | # with local connection. | ||
5 | # | ||
6 | # USAGE: | ||
7 | # ansible-playbook-wrapper [other ansible-playbook arguments] | ||
8 | # | ||
9 | # ENVIRONMENT VARIABLES: | ||
10 | # | ||
11 | # - REQUIREMENTS: requirements filename; default = "requirements.yml" | ||
12 | # - PLAYBOOK: playbook filename; default = "playbook.yml" | ||
13 | # - INVENTORY: inventory filename; default = "/etc/ansible/hosts" | ||
14 | # | ||
15 | |||
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 | |||
34 | if [ -z "$PLAYBOOK" ]; then | ||
35 | PLAYBOOK=playbook.yml | ||
36 | fi | ||
37 | |||
38 | |||
39 | if [ -z "$INVENTORY" ]; then | ||
40 | exec ansible-playbook \ | ||
41 | $PLAYBOOK \ | ||
42 | --connection=local \ | ||
43 | "$@" | ||
44 | else | ||
45 | exec ansible-playbook \ | ||
46 | -i $INVENTORY $PLAYBOOK \ | ||
47 | --connection=local \ | ||
48 | "$@" | ||
49 | fi | ||