blob: 3bc56b3c9c62a445ed0525482472a92c1cc1bbe1 (
plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
#!/bin/sh
# COPYRIGHT NOTICE STARTS HERE
# Copyright 2018 © Samsung Electronics Co., Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# COPYRIGHT NOTICE ENDS HERE
set -e
script_path=$(readlink -f "$0")
script_name=$(basename "$script_path")
ANSIBLE_DIR=$(dirname "$script_path")
ANSIBLE_CHROOT="${ANSIBLE_DIR}/ansible_chroot"
ANSIBLE_LOG_PATH="/ansible/log/ansible-$(date +%Y.%m.%d-%H%M%S).log"
#
# functions
#
help()
{
echo "
NAME:
${script_name} - wrapper for ansible-playbook command
DESCRIPTION:
Run ansible playbook (or other command if it is there) inside a docker
container or a chroot environment.
By default the chroot is used because it has less dependencies and no
service needs to be run (provided that chroot command is installed).
Docker support is kept for compatibility reasons.
To run ansible docker image you must set environment variable:
ANSIBLE_DOCKER_IMAGE
So this wrapper can know by which name you have built the included
Dockerfile and also to trigger this different behaviour.
For example:
ANSIBLE_DOCKER_IMAGE=ansible
USAGE:
./${script_name}
This help
./${script_name} <args>
Run ansible-playbook command inside a chroot
ANSIBLE_DOCKER_IMAGE=<docker-image> ./${script_name} <args>
Run ansible-playbook command inside a docker container
REQUIREMENTS:
For the optimal usage your system should support overlay mount. Which
should be available on any recent kernel at least couple of years back.
Another requirement is the 'unshare' utility which is part of 'util-linux'
package and also is part of system for couple of years already.
The last is 'chroot' command itself and that is also part of system
basically everywhere.
"
}
#
# run playbook
#
export ANSIBLE_LOG_PATH
# if no arg then print help and exit
if [ -z "$1" ] ; then
help
exit 0
fi
# we must be root
if [ "$(id -u)" -ne 0 ] ; then
echo ERROR: "I need root privileges and you are not root: $(id -nu)" >&2
exit 1
fi
# if env var is set then run in docker
if [ -n "$ANSIBLE_DOCKER_IMAGE" ] ; then
exec docker run --rm \
-v "${HOME}"/.ssh:/root/.ssh:rw \
-v "$ANSIBLE_DIR:/ansible:ro" \
-v "$ANSIBLE_DIR/application:/ansible/application:rw" \
-v "$ANSIBLE_DIR/certs/:/ansible/certs:rw" \
-v "$ANSIBLE_DIR/log/:/ansible/log:rw" \
-e ANSIBLE_LOG_PATH \
-it "${ANSIBLE_DOCKER_IMAGE}" "$@"
fi
# if not already there then unpack chroot
if ! [ -d "$ANSIBLE_CHROOT" ] ; then
if ! [ -f "$ANSIBLE_DIR"/docker/ansible_chroot.tgz ] ; then
echo ERROR: "Missing chroot archive: ${ANSIBLE_DIR}/ansible_chroot.tgz" >&2
exit 1
fi
echo INFO: "Unpacking chroot tar into: ${ANSIBLE_CHROOT}" >&2
if ! tar -C "$ANSIBLE_DIR" -xzf "$ANSIBLE_DIR"/docker/ansible_chroot.tgz ; then
echo ERROR: "Unpacking failed - ABORT" >&2
exit 1
fi
fi
# run chroot
"$ANSIBLE_DIR"/docker/run_chroot.sh \
--mount rw:"${HOME}/.ssh":/root/.ssh \
--mount ro:"$ANSIBLE_DIR":/ansible \
--mount rw:"$ANSIBLE_DIR"/application:/ansible/application \
--mount rw:"$ANSIBLE_DIR"/log:/ansible/log \
--mount rw:"$ANSIBLE_DIR"/certs:/ansible/certs \
--mount ro:/etc/resolv.conf:/etc/resolv.conf \
--mount ro:/etc/hosts:/etc/hosts \
--workdir /ansible \
execute "$ANSIBLE_CHROOT" ansible-playbook "$@"
exit 0
|