aboutsummaryrefslogtreecommitdiffhomepage
path: root/debian8-onbuild/ansible-playbook-wrapper
diff options
context:
space:
mode:
Diffstat (limited to 'debian8-onbuild/ansible-playbook-wrapper')
-rwxr-xr-xdebian8-onbuild/ansible-playbook-wrapper29
1 files changed, 24 insertions, 5 deletions
diff --git a/debian8-onbuild/ansible-playbook-wrapper b/debian8-onbuild/ansible-playbook-wrapper
index bf137c8..0ba45e6 100755
--- a/debian8-onbuild/ansible-playbook-wrapper
+++ b/debian8-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
21if [ -z "$REQUIREMENTS" ]; then
22 REQUIREMENTS=requirements.yml
23fi
24
25if [ -f "$REQUIREMENTS" ]; then
26 ansible-galaxy install -r $REQUIREMENTS
27fi
28
29
30#
31# execute playbook
32#
33
15if [ -z "$PLAYBOOK" ]; then 34if [ -z "$PLAYBOOK" ]; then
16 PLAYBOOK=playbook.yml 35 PLAYBOOK=playbook.yml
17fi 36fi