forked from intel/Edge-Software-Provisioner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
run.sh
executable file
·162 lines (147 loc) · 5.61 KB
/
run.sh
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#!/bin/bash
# Copyright (C) 2019 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
set -u
if [[ $(id -u) -ne 0 ]]; then
echo -e "\e[1m\e[31;1m Please run this script as root \e[0m"
exit 1
fi
source "scripts/textutils.sh"
source "scripts/fileutils.sh"
printHelp() {
printMsg "\n ${T_BOLD}${C_BLUE}Run Script${T_RESET}"
printMsg " This script simply starts (or restarts) the containers in the docker-compose.yml file."
printMsg " If this is your first time deploying, please use ${T_BOLD}${C_YELLOW}build.sh${T_RESET} first."
printMsg " Running this script without any arguments will safely attempt "
printMsg " to bring up all containers without any downtime."
printMsg ""
printMsg " You can specify one the following options:"
printMsg " ${T_BOLD}-m${T_RESET}, --no-dnsmasq Dnsmasq service will not be started (no DHCP or PXE)"
printMsg " ${T_BOLD}-f${T_RESET}, --force Will forceably stop & re-create the containers"
printMsg " ${T_BOLD}-r${T_RESET}, --restart Will only restart the containers"
printMsg " ${T_BOLD}-d${T_RESET}, --down Will stop all containers and cleanup excess mounts"
printMsg " ${T_BOLD}-n${T_RESET}, --no-tail-logs Do not tail the containers' logs after completion (default is to tail)"
printMsg " ${T_BOLD}-D${T_RESET}, --dynamic RUN ESP with dynamic profile support, if included in build"
printMsg " ${T_BOLD}-h${T_RESET}, --help Show this help dialog"
printMsg ""
printMsg " Usage: ./run.sh"
printMsg ""
exit 0
}
NO_DNSMASQ="false"
FORCE_RECREATE="false"
FORCE_RESTART="false"
DOWN="false"
NO_TAIL_LOGS="false"
for var in "$@"; do
case "${var}" in
"-m" | "--no-dnsmasq" ) NO_DNSMASQ="true";;
"-f" | "--force" ) FORCE_RECREATE="true";;
"-r" | "--restart" ) FORCE_RESTART="true";;
"-d" | "--down" ) DOWN="true";;
"-n" | "--no-tail-logs" ) NO_TAIL_LOGS="true";;
"-h" | "--help" ) printHelp;;
esac
done
printMsg "\n-------------------------"
printMsg " ${T_BOLD}${C_BLUE}Welcome${T_RESET}"
printMsg "-------------------------"
logMsg "Welcome to the builder host run script"
parseConfig
if [[ "${DOWN}" == "true" ]]; then
printDatedInfoMsg "Stopping containers..."
logMsg "run.sh down containers"
sleep 1
if podman -v >/dev/null 2>&1; then
scripts/espctl.sh down
else
docker-compose down
fi
PWD=$(pwd)
umount template/pxe_bg.png -l >/dev/null 2>&1
umount data/srv/tftp/images -l >/dev/null 2>&1
umount data/srv/tftp/pxelinux.cfg -l >/dev/null 2>&1
umount data/srv/tftp/pxelinux.cfg_legacy -l >/dev/null 2>&1
umount data/usr/share/nginx/html/tftp -l >/dev/null 2>&1
sync >/dev/null 2>&1
exit
fi
if [[ "${FORCE_RESTART}" == "true" ]]; then
printDatedInfoMsg "Restarting containers..."
logMsg "run.sh restarting containers"
if podman -v >/dev/null 2>&1; then
scripts/espctl.sh restart
else
docker-compose restart
fi
else
if [[ "${FORCE_RECREATE}" == "true" ]]; then
printDatedInfoMsg "Stopping containers..."
logMsg "run.sh force-recreating containers"
sleep 1
if podman -v >/dev/null 2>&1; then
scripts/espctl.sh down
else
docker-compose down
fi
PWD=$(pwd)
umount template/pxe_bg.png -l >/dev/null 2>&1
umount data/srv/tftp/images -l >/dev/null 2>&1
umount data/srv/tftp/pxelinux.cfg -l >/dev/null 2>&1
umount data/srv/tftp/pxelinux.cfg_legacy -l >/dev/null 2>&1
umount data/usr/share/nginx/html/tftp -l >/dev/null 2>&1
sync >/dev/null 2>&1
fi
if [[ "${builder_config_disable_dnsmasq-false}" == "false" ]]; then
if [[ "${NO_DNSMASQ}" == "false" ]]; then
printDatedInfoMsg "Starting dnsmasq container..."
logMsg "run.sh bringing up containers"
if podman -v >/dev/null 2>&1; then
scripts/espctl.sh up dnsmasq
else
docker-compose up -d dnsmasq
fi
printDatedInfoMsg "Waiting a moment before starting the remaining containers..."
sleep 3
fi
fi
if podman -v >/dev/null 2>&1; then
scripts/espctl.sh up --no-dnsmasq
else
DOCKER_COMPOSE_SERVICES="core web registry-mirror squid"
if [[ "${builder_config_disable_certbot-false}" == "false" ]]; then
DOCKER_COMPOSE_SERVICES="${DOCKER_COMPOSE_SERVICES} certbot"
fi
if [[ "${builder_config_disable_gitea-false}" == "false" ]]; then
DOCKER_COMPOSE_SERVICES="${DOCKER_COMPOSE_SERVICES} mirror"
fi
if [[ "${builder_config_disable_smb-false}" == "false" ]]; then
DOCKER_COMPOSE_SERVICES="${DOCKER_COMPOSE_SERVICES} smb"
fi
if [[ "${builder_config_dynamic_profile__enabled-x}" == "true" ]]; then
DOCKER_COMPOSE_SERVICES="${DOCKER_COMPOSE_SERVICES} dyn-profile"
fi
docker-compose up -d ${DOCKER_COMPOSE_SERVICES}
fi
fi
if [[ "${NO_TAIL_LOGS}" == "true" ]]; then
printBanner "${C_GREEN}Run script completed!"
else
printBanner "${C_GREEN}Following Logs..."
printMsg ""
printMsg "${T_BOLD}It is safe to press CTRL+C at any time to stop following logs.${T_RESET}"
printMsg ""
# Give the user a moment to read the above message before tailing logs.
printMsgNoNewline "."
sleep 1
printMsgNoNewline "."
sleep 1
printMsgNoNewline "."
sleep 1
printMsg ""
if podman -v >/dev/null 2>&1; then
./scripts/espctl.sh logs -f
else
docker-compose logs -f
fi
fi