-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy pathdappnode_install.sh
More file actions
executable file
·416 lines (358 loc) · 15.7 KB
/
dappnode_install.sh
File metadata and controls
executable file
·416 lines (358 loc) · 15.7 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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
#!/bin/bash
#############
# VARIABLES #
#############
# Dirs
DAPPNODE_DIR="/usr/src/dappnode"
DAPPNODE_CORE_DIR="${DAPPNODE_DIR}/DNCORE"
LOGS_DIR="$DAPPNODE_DIR/logs"
# Files
CONTENT_HASH_FILE="${DAPPNODE_CORE_DIR}/packages-content-hash.csv"
LOGFILE="${LOGS_DIR}/dappnode_install.log"
MOTD_FILE="/etc/motd"
UPDATE_MOTD_DIR="/etc/update-motd.d"
DAPPNODE_PROFILE="${DAPPNODE_CORE_DIR}/.dappnode_profile"
# Get URLs
PROFILE_BRANCH=${PROFILE_BRANCH:-"master"}
IPFS_ENDPOINT=${IPFS_ENDPOINT:-"http://ipfs.io"}
# PROFILE_URL env is used to fetch the core packages versions that will be used to build the release in script install method
PROFILE_URL=${PROFILE_URL:-"https://github.com/dappnode/DAppNode/releases/latest/download/dappnode_profile.sh"}
DAPPNODE_ACCESS_CREDENTIALS="${DAPPNODE_DIR}/scripts/dappnode_access_credentials.sh"
DAPPNODE_ACCESS_CREDENTIALS_URL="https://github.com/dappnode/DAppNode/releases/latest/download/dappnode_access_credentials.sh"
WGET="wget -q --show-progress --progress=bar:force"
SWGET="wget -q -O-"
# Other
CONTENT_HASH_PKGS=(geth besu nethermind erigon prysm teku lighthouse nimbus lodestar)
ARCH=$(dpkg --print-architecture)
WELCOME_MESSAGE="\nChoose a way to connect to your DAppNode, then go to \e[1mhttp://my.dappnode\e[0m\n\n\e[1m- Wifi\e[0m\t\tScan and connect to DAppNodeWIFI. Get wifi credentials with \e[32mdappnode_wifi\e[0m\n\n\e[1m- Local Proxy\e[0m\tConnect to the same router as your DAppNode. Then go to \e[1mhttp://dappnode.local\e[0m\n\n\e[1m- Wireguard\e[0m\tDownload Wireguard app on your device. Get your dappnode wireguard credentials with \e[32mdappnode_wireguard\e[0m\n\n\e[1m- Open VPN\e[0m\tDownload OPen VPN app on your device. Get your openVPN creds with \e[32mdappnode_openvpn\e[0m\n\n\nTo see a full list of commands available execute \e[32mdappnode_help\e[0m\n"
# Clean if update
if [ "$UPDATE" = true ]; then
echo "Cleaning for update..."
rm -rf $LOGFILE
rm -rf ${DAPPNODE_CORE_DIR}/docker-compose-*.yml
rm -rf ${DAPPNODE_CORE_DIR}/dappnode_package-*.json
rm -rf ${DAPPNODE_CORE_DIR}/*.tar.xz
rm -rf ${DAPPNODE_CORE_DIR}/*.txz
rm -rf ${DAPPNODE_CORE_DIR}/.dappnode_profile
rm -rf ${CONTENT_HASH_FILE}
fi
# Create necessary directories
mkdir -p $DAPPNODE_DIR
mkdir -p $DAPPNODE_CORE_DIR
mkdir -p "${DAPPNODE_DIR}/scripts"
mkdir -p "${DAPPNODE_CORE_DIR}/scripts"
mkdir -p "${DAPPNODE_DIR}/config"
mkdir -p $LOGS_DIR
# TEMPORARY: think a way to integrate flags instead of use files to detect installation type
is_iso_install() {
# Check old and new location of iso_install.log
if [ -f "${DAPPNODE_DIR}/iso_install.log" ] || [ -f "${DAPPNODE_DIR}/logs/iso_install.log" ]; then
IS_ISO_INSTALL=true
else
IS_ISO_INSTALL=false
fi
}
# Check is port 80 in used (necessary for HTTPS)
is_port_used() {
lsof -i -P -n | grep ":80 (LISTEN)" &>/dev/null && IS_PORT_USED=true || IS_PORT_USED=false
}
# Determine packages to be installed
determine_packages() {
is_iso_install
is_port_used
if [ "$IS_ISO_INSTALL" == "false" ]; then
if [ "$IS_PORT_USED" == "true" ]; then
PKGS=(BIND IPFS VPN WIREGUARD DAPPMANAGER WIFI)
else
PKGS=(HTTPS BIND IPFS WIREGUARD DAPPMANAGER WIFI)
fi
else
if [ "$IS_PORT_USED" == "true" ]; then
PKGS=(BIND IPFS WIREGUARD DAPPMANAGER WIFI)
else
PKGS=(HTTPS BIND IPFS WIREGUARD DAPPMANAGER WIFI)
fi
fi
echo -e "\e[32mPackages to be installed: ${PKGS[*]}\e[0m" 2>&1 | tee -a $LOGFILE
}
function valid_ip() {
local ip=$1
local stat=1
if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
OIFS=$IFS
IFS='.'
ip=("$ip")
IFS=$OIFS
[[ ${ip[0]} -le 255 && ${ip[1]} -le 255 &&
${ip[2]} -le 255 && ${ip[3]} -le 255 ]]
stat=$?
fi
return $stat
}
if [[ -n "$STATIC_IP" ]]; then
if valid_ip "$STATIC_IP"; then
echo "$STATIC_IP" >${DAPPNODE_DIR}/config/static_ip
else
echo "The static IP provided: ${STATIC_IP} is not valid."
exit 1
fi
fi
# Loads profile, if not exists it means it is script install so the versions will be fetched from the latest profile
[ -f $DAPPNODE_PROFILE ] || ${WGET} -O ${DAPPNODE_PROFILE} ${PROFILE_URL}
# shellcheck disable=SC1090
source "${DAPPNODE_PROFILE}"
# The indirect variable expansion used in ${!ver##*:} allows us to use versions like 'dev:development'
# If such variable with 'dev:'' suffix is used, then the component is built from specified branch or commit.
# you can also specify an IPFS version like /ipfs/QmWg8P2b9JKQ8thAVz49J8SbJbCoi2MwkHnUqMtpzDTtxR:0.2.7, it's important
# to include the exact version also in the IPFS hash format since it's needed to be able to download it
determine_packages
for comp in "${PKGS[@]}"; do
ver="${comp}_VERSION"
DOWNLOAD_URL="https://github.com/dappnode/DNP_${comp}/releases/download/v${!ver}"
if [[ ${!ver} == /ipfs/* ]]; then
DOWNLOAD_URL="${IPFS_ENDPOINT}/api/v0/cat?arg=${!ver%:*}"
fi
eval "${comp}_URL=\"${DOWNLOAD_URL}/${comp,,}.dnp.dappnode.eth_${!ver##*:}_linux-${ARCH}.txz\""
eval "${comp}_YML=\"${DOWNLOAD_URL}/docker-compose.yml\""
eval "${comp}_MANIFEST=\"${DOWNLOAD_URL}/dappnode_package.json\""
eval "${comp}_YML_FILE=\"${DAPPNODE_CORE_DIR}/docker-compose-${comp,,}.yml\""
eval "${comp}_FILE=\"${DAPPNODE_CORE_DIR}/${comp,,}.dnp.dappnode.eth_${!ver##*:}_linux-${ARCH}.txz\""
eval "${comp}_MANIFEST_FILE=\"${DAPPNODE_CORE_DIR}/dappnode_package-${comp,,}.json\""
done
dappnode_core_build() {
for comp in "${PKGS[@]}"; do
ver="${comp}_VERSION"
if [[ ${!ver} == dev:* ]]; then
echo "Cloning & building DNP_${comp}..."
if ! dpkg -s git >/dev/null 2>&1; then
apt-get install -y git
fi
TMPDIR=$(mktemp -d)
pushd "$TMPDIR" || {
echo "Error on pushd"
exit 1
}
git clone -b "${!ver##*:}" https://github.com/dappnode/DNP_"${comp}"
# Change version in YAML to the custom one
DOCKER_VER=$(echo "${!ver##*:}" | sed 's/\//_/g')
sed -i "s~^\(\s*image\s*:\s*\).*~\1${comp,,}.dnp.dappnode.eth:${DOCKER_VER}~" DNP_"${comp}"/docker-compose.yml
docker compose -f ./DNP_"${comp}"/docker-compose.yml build
cp ./DNP_"${comp}"/docker-compose.yml "${DAPPNODE_CORE_DIR}"/docker-compose-"${comp,,}".yml
cp ./DNP_"${comp}"/dappnode_package.json "${DAPPNODE_CORE_DIR}"/dappnode_package-"${comp,,}".json
rm -r ./DNP_"${comp}"
popd || {
echo "Error on popd"
exit 1
}
fi
done
}
dappnode_core_download() {
for comp in "${PKGS[@]}"; do
ver="${comp}_VERSION"
if [[ ${!ver} != dev:* ]]; then
# Download DAppNode Core Images if it's needed
echo "Downloading ${comp} tar..."
eval "[ -f \$${comp}_FILE ] || $WGET -O \$${comp}_FILE \$${comp}_URL || exit 1"
# Download DAppNode Core docker-compose yml files if it's needed
echo "Downloading ${comp} yml..."
eval "[ -f \$${comp}_YML_FILE ] || $WGET -O \$${comp}_YML_FILE \$${comp}_YML || exit 1"
# Download DAppNode Core manifest files if it's needed
echo "Downloading ${comp} manifest..."
eval "[ -f \$${comp}_MANIFEST_FILE ] || $WGET -O \$${comp}_MANIFEST_FILE \$${comp}_MANIFEST || exit 1"
fi
done
}
dappnode_core_load() {
for comp in "${PKGS[@]}"; do
ver="${comp}_VERSION"
if [[ ${!ver} != dev:* ]]; then
eval "[ ! -z \$(docker images -q ${comp,,}.dnp.dappnode.eth:${!ver##*:}) ] || docker load -i \$${comp}_FILE 2>&1 | tee -a \$LOGFILE"
fi
done
}
customMotd() {
generateMotdText
if [ -d "${UPDATE_MOTD_DIR}" ]; then
# Ubuntu configuration
modifyMotdGeneration
fi
}
# Debian distros use /etc/motd plain text file
generateMotdText() {
# Check and create the MOTD file if it does not exist
if [ ! -f "${MOTD_FILE}" ]; then
touch "${MOTD_FILE}"
fi
# Write the ASCII art and welcome message as plain text
cat <<'EOF' >"${MOTD_FILE}"
___ _
| \ __ _ _ __ _ __ _ _ ___ __| |___
| |) / _` | '_ \ '_ \ ' \/ _ \/ _` / -_)
|___/\__,_| .__/ .__/_||_\___/\__,_\___|
|_| |_|
EOF
echo -e "$WELCOME_MESSAGE" >>"${MOTD_FILE}"
}
# Ubuntu distros use /etc/update-motd.d/ to generate the motd
modifyMotdGeneration() {
disabled_motd_dir="${UPDATE_MOTD_DIR}/disabled"
mkdir -p "${disabled_motd_dir}"
# Move all the files in /etc/update-motd.d/ to /etc/update-motd.d/disabled/
# Except for the files listed in "files_to_keep"
files_to_keep="00-header 50-landscape-sysinfo 98-reboot-required"
for file in ${UPDATE_MOTD_DIR}/*; do
base_file=$(basename "${file}")
if [ -f "${file}" ] && ! echo "${files_to_keep}" | grep -qw "${base_file}"; then
mv "${file}" "${disabled_motd_dir}/"
fi
done
}
addSwap() {
# Is swap enabled?
IS_SWAP=$(swapon --show | wc -l)
# if not then create it
if [ "$IS_SWAP" -eq 0 ]; then
echo -e '\e[32mSwap not found. Adding swapfile.\e[0m'
#RAM=$(awk '/MemTotal/ {print $2}' /proc/meminfo)
#SWAP=$(($RAM * 2))
SWAP=8388608
fallocate -l ${SWAP}k /swapfile
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile
echo '/swapfile none swap defaults 0 0' >>/etc/fstab
else
echo -e '\e[32mSwap found. No changes made.\e[0m'
fi
}
dappnode_start() {
echo -e "\e[32mDAppNode starting...\e[0m" 2>&1 | tee -a $LOGFILE
# shellcheck disable=SC1090
source "${DAPPNODE_PROFILE}" >/dev/null 2>&1
# Execute `compose-up` independently
# To execute `compose-up` against more than 1 compose, composes files must share compose file version (e.g 3.5)
for comp in "${DNCORE_YMLS_ARRAY[@]}"; do
docker compose -f "$comp" up -d 2>&1 | tee -a $LOGFILE
echo "${comp} started" 2>&1 | tee -a $LOGFILE
done
echo -e "\e[32mDAppNode started\e[0m" 2>&1 | tee -a $LOGFILE
# Show credentials to the user on login
USER=$(grep 1000 /etc/passwd | cut -f 1 -d:)
[ -n "$USER" ] && USER_HOME=/home/$USER || USER_HOME=/root
# Add profile sourcing to both .profile and .bashrc for maximum compatibility
for config_file in .profile .bashrc; do
CONFIG_PATH="$USER_HOME/$config_file"
# Create config file if it doesn't exist
[ ! -f "$CONFIG_PATH" ] && touch "$CONFIG_PATH"
# Add profile sourcing if not already present
if ! grep -q "${DAPPNODE_PROFILE}" "$CONFIG_PATH"; then
echo "######## DAPPNODE PROFILE ########" >>"$CONFIG_PATH"
echo -e "source ${DAPPNODE_PROFILE}\n" >>"$CONFIG_PATH"
fi
done
# Remove return from profile
sed -i '/return/d' $DAPPNODE_PROFILE | tee -a $LOGFILE
# Download access_credentials script
[ -f $DAPPNODE_ACCESS_CREDENTIALS ] || ${WGET} -O ${DAPPNODE_ACCESS_CREDENTIALS} ${DAPPNODE_ACCESS_CREDENTIALS_URL}
# Delete dappnode_install.sh execution from rc.local if exists, and is not the unattended firstboot
if [ -f "/etc/rc.local" ] && [ ! -f "/usr/src/dappnode/.firstboot" ]; then
sed -i '/\/usr\/src\/dappnode\/scripts\/dappnode_install.sh/d' /etc/rc.local 2>&1 | tee -a $LOGFILE
fi
# Display help message to the user
echo -e "Execute \e[32mdappnode_help\e[0m to see a full list with commands available"
}
installExtraDpkg() {
if [ -d "/usr/src/dappnode/extra_dpkg" ]; then
dpkg -i /usr/src/dappnode/iso/extra_dpkg/*.deb 2>&1 | tee -a $LOGFILE
fi
}
grabContentHashes() {
if [ ! -f "${CONTENT_HASH_FILE}" ]; then
for comp in "${CONTENT_HASH_PKGS[@]}"; do
CONTENT_HASH=$(eval "${SWGET}" https://github.com/dappnode/DAppNodePackage-"${comp}"/releases/latest/download/content-hash)
if [ -z "$CONTENT_HASH" ]; then
echo "ERROR! Failed to find content hash of ${comp}." 2>&1 | tee -a $LOGFILE
exit 1
fi
echo "${comp}.dnp.dappnode.eth,${CONTENT_HASH}" >>${CONTENT_HASH_FILE}
done
fi
}
# /sgx will only be installed on ISO's dappnode not on standalone script
installSgx() {
if [ -d "/usr/src/dappnode/iso/sgx" ]; then
# from sgx_linux_x64_driver_2.5.0_2605efa.bin
/usr/src/dappnode/iso/sgx/sgx_linux_x64_driver.bin 2>&1 | tee -a $LOGFILE
/usr/src/dappnode/iso/sgx/enable_sgx 2>&1 | tee -a $LOGFILE
fi
}
# /extra_dpkg will only be installed on ISO's dappnode not on standalone script
installExtraDpkg() {
if [ -d "/usr/src/dappnode/iso/extra_dpkg" ]; then
dpkg -i /usr/src/dappnode/extra_dpkg/*.deb 2>&1 | tee -a $LOGFILE
fi
}
# The main user needs to be added to the docker group to be able to run docker commands without sudo
# Explained in: https://docs.docker.com/engine/install/linux-postinstall/
addUserToDockerGroup() {
# UID is provided to the first regular user created in the system
USER=$(grep 1000 "/etc/passwd" | cut -f 1 -d:)
# If USER is not found, warn the user and return
if [ -z "$USER" ]; then
echo -e "\e[33mWARN: Default user not found. Could not add it to the docker group.\e[0m" 2>&1 | tee -a $LOGFILE
return
fi
if groups "$USER" | grep &>/dev/null '\bdocker\b'; then
echo -e "\e[32mUser $USER is already in the docker group\e[0m" 2>&1 | tee -a $LOGFILE
return
fi
# This step is already done in the dappnode_install_pre.sh script,
# but it's not working in the Ubuntu ISO because the late-commands in the autoinstall.yaml
# file are executed before the user is created.
usermod -aG docker "$USER"
echo -e "\e[32mUser $USER added to the docker group\e[0m" 2>&1 | tee -a $LOGFILE
}
##############################################
#### SCRIPT START ####
##############################################
echo -e "\e[32m\n##############################################\e[0m" 2>&1 | tee -a $LOGFILE
echo -e "\e[32m#### DAPPNODE INSTALLER ####\e[0m" 2>&1 | tee -a $LOGFILE
echo -e "\e[32m##############################################\e[0m" 2>&1 | tee -a $LOGFILE
echo -e "\e[32mCreating swap memory...\e[0m" 2>&1 | tee -a $LOGFILE
addSwap
echo -e "\e[32mCustomizing login...\e[0m" 2>&1 | tee -a $LOGFILE
customMotd
echo -e "\e[32mInstalling extra packages...\e[0m" 2>&1 | tee -a $LOGFILE
installExtraDpkg
echo -e "\e[32mGrabbing latest content hashes...\e[0m" 2>&1 | tee -a $LOGFILE
grabContentHashes
if [ "$ARCH" == "amd64" ]; then
echo -e "\e[32mInstalling SGX modules...\e[0m" 2>&1 | tee -a $LOGFILE
installSgx
echo -e "\e[32mInstalling extra packages...\e[0m" 2>&1 | tee -a $LOGFILE
installExtraDpkg # TODO: Why is this being called twice?
fi
echo -e "\e[32mAdding user to docker group...\e[0m" 2>&1 | tee -a $LOGFILE
addUserToDockerGroup
echo -e "\e[32mCreating dncore_network if needed...\e[0m" 2>&1 | tee -a $LOGFILE
docker network create --driver bridge --subnet 172.33.0.0/16 dncore_network 2>&1 | tee -a $LOGFILE
echo -e "\e[32mBuilding DAppNode Core if needed...\e[0m" 2>&1 | tee -a $LOGFILE
dappnode_core_build
echo -e "\e[32mDownloading DAppNode Core...\e[0m" 2>&1 | tee -a $LOGFILE
dappnode_core_download
echo -e "\e[32mLoading DAppNode Core...\e[0m" 2>&1 | tee -a $LOGFILE
dappnode_core_load
if [ ! -f "/usr/src/dappnode/.firstboot" ]; then
echo -e "\e[32mDAppNode installed\e[0m" 2>&1 | tee -a $LOGFILE
dappnode_start
fi
# Run test in interactive terminal
if [ -f "/usr/src/dappnode/.firstboot" ]; then
# ensure openvt is installed prior to using it
apt-get update
apt-get install -y kbd
openvt -s -w -- sudo -u root /usr/src/dappnode/scripts/dappnode_test_install.sh
exit 0
fi
exit 0