blob: afe4d97d9aa73298543855d7b154eac25345c3f7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#!/bin/sh
#
# Simple wrapper for executing ansible-galaxy and ansible-playbook
# with local connection.
#
# USAGE:
# ansible-playbook-wrapper [other ansible-playbook arguments]
#
# ENVIRONMENT VARIABLES:
#
# - REQUIREMENTS: requirements filename; default = "requirements.yml"
# - PLAYBOOK: playbook filename; default = "playbook.yml"
# - INVENTORY: inventory filename; default = "/etc/ansible/hosts"
#
#
# install Galaxy roles, if any
#
if [ -z "$REQUIREMENTS" ]; then
REQUIREMENTS=requirements.yml
fi
if [ -f "$REQUIREMENTS" ]; then
apt-get install -y git
ansible-galaxy install -r $REQUIREMENTS
fi
#
# execute playbook
#
if [ -z "$PLAYBOOK" ]; then
PLAYBOOK=playbook.yml
fi
if [ -z "$INVENTORY" ]; then
exec ansible-playbook \
$PLAYBOOK \
--connection=local \
"$@"
else
exec ansible-playbook \
-i $INVENTORY $PLAYBOOK \
--connection=local \
"$@"
fi
|