-
Notifications
You must be signed in to change notification settings - Fork 0
/
ansible-playbook-wrapper
executable file
·57 lines (47 loc) · 1.14 KB
/
ansible-playbook-wrapper
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
51
52
53
54
55
56
57
#!/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
apk --update add git
ansible-galaxy install -r $REQUIREMENTS
fi
#
# execute playbook
#
if [ -n "$CI_GPG_PRIVATE_KEY" ]; then
echo -ne " Import GPG-Key... "
echo "$CI_GPG_PRIVATE_KEY"|base64 -d | gpg --import \
&& echo "successful."
git crypt unlock
fi
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