-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgoad_docker.sh
More file actions
executable file
·51 lines (45 loc) · 1.47 KB
/
goad_docker.sh
File metadata and controls
executable file
·51 lines (45 loc) · 1.47 KB
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
#!/usr/bin/env bash
py=python3
venv="$HOME/.goad/.venvdocker"
if [ ! -d "$venv" ]; then
version=$($py --version 2>&1 | awk '{print $2}')
version_numeric=$(echo "$version" | awk -F. '{printf "%d%02d%02d\n", $1, $2, $3}')
if [ "$version_numeric" -ge 30800 ]; then
echo 'python version ok'
else
echo "Python version is outside the range >= 3.8.0"
exit
fi
if $py -m venv --help > /dev/null 2>&1; then
echo "venv module is installed. continue"
else
echo "venv module is not installed."
echo "please install python-venv according to your system"
echo "exit"
exit 0
fi
echo '[+] venv not found, start python venv creation'
mkdir -p ~/.goad
$py -m venv "$venv"
source "$venv/bin/activate"
$py -m pip install --upgrade pip
export SETUPTOOLS_USE_DISTUTILS=stdlib
$py -m pip install -r noansible_requirements.yml
fi
if groups "$USER" | grep &> /dev/null '\bdocker\b'; then
echo "User is in the docker group"
use_sudo=""
else
echo "User is not in the docker group"
use_sudo="sudo"
fi
ALREADY_BUILD=$($use_sudo docker images | grep -c "goadansible")
if [[ $ALREADY_BUILD -eq 0 ]]; then
echo "[+] Build container"
$use_sudo docker build -t goadansible .
echo "${OK} Container goadansible creation complete"
fi
echo "goad with docker, disable local and runner provisioner"
source "$venv/bin/activate"
$py goad.py -m docker -d local -d runner "$@"
deactivate