diff options
author | William Yeh <william.pjyeh@gmail.com> | 2015-04-28 23:38:41 +0800 |
---|---|---|
committer | William Yeh <william.pjyeh@gmail.com> | 2015-04-28 23:38:41 +0800 |
commit | 02c349017570070ead3755fe15c34d1661cee1e2 (patch) | |
tree | 80993bff0b3eee8d46509b5c23ec13cb24b2f75e /centos7-onbuild/ansible-playbook-wrapper | |
parent | e6ab6feafb044b0e22914243686b2d8cf245a869 (diff) | |
download | docker-ansible-02c349017570070ead3755fe15c34d1661cee1e2.tar.gz docker-ansible-02c349017570070ead3755fe15c34d1661cee1e2.tar.zst docker-ansible-02c349017570070ead3755fe15c34d1661cee1e2.zip |
Add: support for CentOS 7.
Diffstat (limited to 'centos7-onbuild/ansible-playbook-wrapper')
-rwxr-xr-x | centos7-onbuild/ansible-playbook-wrapper | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/centos7-onbuild/ansible-playbook-wrapper b/centos7-onbuild/ansible-playbook-wrapper new file mode 100755 index 0000000..bf137c8 --- /dev/null +++ b/centos7-onbuild/ansible-playbook-wrapper | |||
@@ -0,0 +1,30 @@ | |||
1 | #!/bin/sh | ||
2 | # | ||
3 | # Simple wrapper for executing ansible-playbook with local connection. | ||
4 | # | ||
5 | # USAGE: | ||
6 | # ansible-playbook-wrapper [other ansible-playbook arguments] | ||
7 | # | ||
8 | # ENVIRONMENT VARIABLES: | ||
9 | # | ||
10 | # - PLAYBOOK: playbook filename; default = "playbook.yml" | ||
11 | # - INVENTORY: inventory filename; default = "/etc/ansible/hosts" | ||
12 | # | ||
13 | |||
14 | |||
15 | if [ -z "$PLAYBOOK" ]; then | ||
16 | PLAYBOOK=playbook.yml | ||
17 | fi | ||
18 | |||
19 | |||
20 | if [ -z "$INVENTORY" ]; then | ||
21 | exec ansible-playbook \ | ||
22 | $PLAYBOOK \ | ||
23 | --connection=local \ | ||
24 | "$@" | ||
25 | else | ||
26 | exec ansible-playbook \ | ||
27 | -i $INVENTORY $PLAYBOOK \ | ||
28 | --connection=local \ | ||
29 | "$@" | ||
30 | fi | ||