This repository was archived by the owner on Nov 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathdappnode_install_pre.sh
More file actions
executable file
·212 lines (181 loc) · 8.22 KB
/
Copy pathdappnode_install_pre.sh
File metadata and controls
executable file
·212 lines (181 loc) · 8.22 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
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
#!/bin/bash
# Execute script with flag UPDATE to update the host: ./dappnode_install_pre.sh UPDATE
DAPPNODE_DIR="/usr/src/dappnode"
LOGS_DIR="$DAPPNODE_DIR/logs"
DOCKER_PKG="docker-ce_20.10.6~3-0~debian-bullseye_amd64.deb"
DOCKER_CLI_PKG="docker-ce-cli_20.10.6~3-0~debian-bullseye_amd64.deb"
CONTAINERD_PKG="containerd.io_1.4.4-1_amd64.deb"
DOCKER_REPO="https://download.docker.com/linux/debian/dists/bullseye/pool/stable/amd64"
DOCKER_PATH="${DAPPNODE_DIR}/bin/docker/${DOCKER_PKG}"
DOCKER_CLI_PATH="${DAPPNODE_DIR}/bin/docker/${DOCKER_CLI_PKG}"
CONTAINERD_PATH="${DAPPNODE_DIR}/bin/docker/${CONTAINERD_PKG}"
DCMP_PATH="/usr/local/bin/docker-compose"
DOCKER_URL="${DOCKER_REPO}/${DOCKER_PKG}"
DOCKER_CLI_URL="${DOCKER_REPO}/${DOCKER_CLI_PKG}"
CONTAINERD_URL="${DOCKER_REPO}/${CONTAINERD_PKG}"
DCMP_URL="https://github.com/docker/compose/releases/download/1.25.5/docker-compose-Linux-x86_64"
WGET="wget -q --show-progress --progress=bar:force"
#!ISOBUILD Do not modify, variables above imported for ISO build
detect_installation_type() {
if [ -f "${DAPPNODE_DIR}/iso_install.log" ]; then
LOG_FILE="${LOGS_DIR}/iso_install.log"
rm -f "${DAPPNODE_DIR}/iso_install.log"
ISO_INSTALLATION=true
else
LOG_FILE="${LOGS_DIR}/install.log"
ISO_INSTALLATION=false
fi
}
# DOCKER INSTALLATION
install_docker() {
# STEP 0: Detect if it's a Debian 9 (stretch) or Debian 10 (Buster) installation
# ----------------------------------------
if [ -f "/etc/os-release" ] && grep -q "buster" "/etc/os-release"; then
DOCKER_PKG="docker-ce_20.10.2~3-0~debian-buster_amd64.deb"
DOCKER_CLI_PKG="docker-ce-cli_20.10.2~3-0~debian-buster_amd64.deb"
CONTAINERD_PKG="containerd.io_1.4.3-1_amd64.deb"
DOCKER_REPO="https://download.docker.com/linux/debian/dists/buster/pool/stable/amd64"
DOCKER_PATH="${DAPPNODE_DIR}/bin/docker/${DOCKER_PKG}"
DOCKER_CLI_PATH="${DAPPNODE_DIR}/bin/docker/${DOCKER_CLI_PKG}"
CONTAINERD_PATH="${DAPPNODE_DIR}/bin/docker/${CONTAINERD_PKG}"
DOCKER_URL="${DOCKER_REPO}/${DOCKER_PKG}"
DOCKER_CLI_URL="${DOCKER_REPO}/${DOCKER_CLI_PKG}"
CONTAINERD_URL="${DOCKER_REPO}/${CONTAINERD_PKG}"
elif [ -f "/etc/os-release" ] && grep -q "stretch" "/etc/os-release"; then
DOCKER_PKG="docker-ce_19.03.8~3-0~debian-stretch_amd64.deb"
DOCKER_CLI_PKG="docker-ce-cli_19.03.8~3-0~debian-stretch_amd64.deb"
CONTAINERD_PKG="containerd.io_1.2.6-3_amd64.deb"
DOCKER_REPO="https://download.docker.com/linux/debian/dists/stretch/pool/stable/amd64"
DOCKER_PATH="${DAPPNODE_DIR}/bin/docker/${DOCKER_PKG}"
DOCKER_CLI_PATH="${DAPPNODE_DIR}/bin/docker/${DOCKER_CLI_PKG}"
CONTAINERD_PATH="${DAPPNODE_DIR}/bin/docker/${CONTAINERD_PKG}"
DOCKER_URL="${DOCKER_REPO}/${DOCKER_PKG}"
DOCKER_CLI_URL="${DOCKER_REPO}/${DOCKER_CLI_PKG}"
CONTAINERD_URL="${DOCKER_REPO}/${CONTAINERD_PKG}"
fi
# STEP 1: Download files
# ----------------------------------------
[ -f $DOCKER_PATH ] || $WGET -O $DOCKER_PATH $DOCKER_URL
[ -f $DOCKER_CLI_PATH ] || $WGET -O $DOCKER_CLI_PATH $DOCKER_CLI_URL
[ -f $CONTAINERD_PATH ] || $WGET -O $CONTAINERD_PATH $CONTAINERD_URL
# STEP 2: Install packages
# ----------------------------------------
dpkg -i $CONTAINERD_PATH 2>&1 | tee -a $LOG_FILE
dpkg -i $DOCKER_CLI_PATH 2>&1 | tee -a $LOG_FILE
dpkg -i $DOCKER_PATH 2>&1 | tee -a $LOG_FILE
# Ensure xz is installed
[ -f "/usr/bin/xz" ] || (apt-get update -y && apt-get install -y xz-utils)
USER=$(grep 1000 "/etc/passwd" | cut -f 1 -d:)
[ -z "$USER" ] || usermod -aG docker "$USER"
# Disable check if ISO installation since it is not possible to check in this way
if [ "$ISO_INSTALLATION" = "false" ]; then
# Validate the installation of docker
if docker -v; then
echo -e "\e[32m \n\n Verified docker installation \n\n \e[0m" 2>&1 | tee -a $LOG_FILE
else
echo -e "\e[31m \n\n ERROR: docker is not installed \n\n Please re-install it \n\n \e[0m" 2>&1 | tee -a $LOG_FILE
exit 1
fi
fi
}
# DOCKER COMPOSE INSTALLATION
install_docker_compose() {
# STEP 0: Declare paths and directories
# ----------------------------------------
# Ensure paths exist
mkdir -p "$(dirname "$DCMP_PATH")" 2>&1 | tee -a $LOG_FILE
# STEP 1: Download files
# ----------------------------------------
[ -f $DCMP_PATH ] || $WGET -O $DCMP_PATH $DCMP_URL
# Give permissions
chmod +x $DCMP_PATH 2>&1 | tee -a $LOG_FILE
# Disable check if ISO installation since it is not possible to check in this way
if [ "$ISO_INSTALLATION" = "false" ]; then
# Validate the installation of docker-compose
if docker-compose -v; then
echo -e "\e[32m \n\n Verified docker-compose installation \n\n \e[0m" 2>&1 | tee -a $LOG_FILE
else
echo -e "\e[31m \n\n ERROR: docker-compose is not installed \n\n Please re-install it \n\n \e[0m" 2>&1 | tee -a $LOG_FILE
exit 1
fi
fi
}
# WIREGUARD INSTALLATION
install_wireguard_dkms() {
apt-get update -y
if [ -f "/etc/os-release" ] && grep -q "buster" "/etc/os-release"; then
echo "deb http://deb.debian.org/debian/ buster-backports main" > /etc/apt/sources.list.d/buster-backports.list
printf 'Package: *\nPin: release a=buster-backports\nPin-Priority: 90\n' > /etc/apt/preferences.d/limit-backports
fi
apt-get install wireguard-dkms -y | tee -a $LOG_FILE
if modprobe wireguard >/dev/null 2>&1 ; then
echo -e "\e[32m \n\n Verified wiregurd-dkms installation \n\n \e[0m" 2>&1 | tee -a $LOG_FILE
else
echo -e "\e[31m \n\n WARNING: wireguard kernel module is not installed, Wireguard DAppNode package might not work! \n\n \e[0m" 2>&1 | tee -a $LOG_FILE
fi
}
# LSOF INSTALLATION
install_lsof() {
apt-get update -y
apt-get install lsof -y | tee -a $LOG_FILE
if lsof -v >/dev/null 2>&1 ; then
echo -e "\e[32m \n\n Verified lsof installation \n\n \e[0m" 2>&1 | tee -a $LOG_FILE
else
echo -e "\e[31m \n\n WARNING: lsof not installed, HTTPS DAppNode package might not be installed! \n\n \e[0m" 2>&1 | tee -a $LOG_FILE
fi
}
# HOST UPDATE
host_update () {
apt-get update 2>&1 | tee -a $LOG_FILE
apt-get -y upgrade 2>&1 | tee -a $LOG_FILE
}
##############################################
#### SCRIPT START ####
##############################################
detect_installation_type
# Ensure paths exist
mkdir -p $DAPPNODE_DIR
mkdir -p $LOGS_DIR
mkdir -p "$(dirname "$DOCKER_PATH")"
touch $LOG_FILE
# Only update && upgrade host if needed
if [ "$1" == "UPDATE" ]; then
echo -e "\e[32m \n\n Updating && upgrading host \n\n \e[0m" 2>&1 | tee -a $LOG_FILE
host_update 2>&1 | tee -a $LOG_FILE
fi
# Only install docker if needed
if docker -v >/dev/null 2>&1; then
echo -e "\e[32m \n\n docker is already installed \n\n \e[0m" 2>&1 | tee -a $LOG_FILE
else
install_docker 2>&1 | tee -a $LOG_FILE
fi
# Only install docker-compose if needed
if docker-compose -v >/dev/null 2>&1; then
echo -e "\e[32m \n\n docker-compose is already installed \n\n \e[0m" 2>&1 | tee -a $LOG_FILE
else
install_docker_compose 2>&1 | tee -a $LOG_FILE
fi
# Only install wireguard-dkms if needed
if modprobe wireguard >/dev/null 2>&1 ; then
echo -e "\e[32m \n\n wireguard-dkms is already installed \n\n \e[0m" 2>&1 | tee -a $LOG_FILE
else
install_wireguard_dkms 2>&1 | tee -a $LOG_FILE
fi
# Only install lsof if needed
if lsof -v >/dev/null 2>&1; then
echo -e "\e[32m \n\n lsof is already installed \n\n \e[0m" 2>&1 | tee -a $LOG_FILE
else
install_lsof 2>&1 | tee -a $LOG_FILE
fi
#Check connectivity
{ [ -f /etc/network/interfaces ] && grep "iface en.* inet dhcp" /etc/network/interfaces &>/dev/null; } || { echo "Interfaces not found"; exit 1; }
## Add missing interfaces
if [ -f /usr/src/dappnode/hotplug ]; then
# shellcheck disable=SC2013
for IFACE in $(grep "en.*" /usr/src/dappnode/hotplug); do
# shellcheck disable=SC2143
if [[ $(grep -L "$IFACE" /etc/network/interfaces) ]]; then
{ echo "# $IFACE"; echo "allow-hotplug $IFACE"; echo "iface $IFACE inet dhcp"; } >> /etc/network/interfaces
fi
done
fi