-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinstall_container_env.sh
executable file
·614 lines (453 loc) · 12.5 KB
/
install_container_env.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
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
#!/bin/sh
############################################################################
# Copyright Nash!Com, Daniel Nashed 2022-2024 - APACHE 2.0 see LICENSE
############################################################################
# Container environment installation script
# Version 1.0.3 22.09.2024
# - Installs required software
# - Adds notes:notes user and group
# - Creates directory structure in /local/ for the Domino server data (/local/notesdata, /local/translog, ...)
# - Clones HCL Domino container project and Domino start script project
# - Installs NashCom Domino container script (dominoctl)
# - Sets security limits
# - Configure NRPC, HTTP and HTTPS if firewalld is configured
SCRIPT_NAME=$0
PARAM1=$1
START_SCRIPT_DIR=$(dirname $0)
SPECIAL_CURL_ARGS=
CURL_CMD="curl --fail --location --connect-timeout 15 --max-time 300 $SPECIAL_CURL_ARGS"
if [ -z "$DOMINO_USER" ]; then
DOMINO_USER=notes
fi
if [ -z "$DOMINO_GROUP" ]; then
DOMINO_GROUP=notes
fi
if [ -z "$DIR_PERM" ]; then
DIR_PERM=770
fi
print_delim ()
{
echo "--------------------------------------------------------------------------------"
}
log_ok ()
{
echo
echo "$1"
echo
}
log_error ()
{
echo
echo "Failed - $1"
echo
}
header ()
{
echo
print_delim
echo "$1"
print_delim
echo
}
install_package()
{
if [ -x /usr/bin/zypper ]; then
/usr/bin/zypper install -y "$@"
elif [ -x /usr/bin/dnf ]; then
/usr/bin/dnf install -y "$@"
elif [ -x /usr/bin/tdnf ]; then
/usr/bin/tdnf install -y "$@"
elif [ -x /usr/bin/microdnf ]; then
/usr/bin/microdnf install -y "$@"
elif [ -x /usr/bin/yum ]; then
/usr/bin/yum install -y "$@"
elif [ -x /usr/bin/apt-get ]; then
/usr/bin/apt-get install -y "$@"
elif [ -x /usr/bin/pacman ]; then
/usr/bin/pacman --noconfirm -Sy "$@"
elif [ -x /sbin/apk ]; then
/sbin/apk add "$@"
else
log_error "No package manager found!"
exit 1
fi
}
install_packages()
{
local PACKAGE=
for PACKAGE in $*; do
install_package $PACKAGE
done
}
remove_package()
{
if [ -x /usr/bin/zypper ]; then
zypper rm -y "$@"
elif [ -x /usr/bin/dnf ]; then
dnf remove -y "$@"
elif [ -x /usr/bin/yum ]; then
yum remove -y "$@"
elif [ -x /usr/bin/apt-get ]; then
apt-get remove -y "$@"
fi
}
remove_packages()
{
local PACKAGE=
for PACKAGE in $*; do
remove_package $PACKAGE
done
}
install_if_missing()
{
if [ -z "$1" ]; then
return 0
fi
if [ -x "/usr/bin/$1" ]; then
echo "already exists: $1"
return 0
fi
if [ -x "/usr/local/bin/$1" ]; then
return 0
fi
if [ -z "$2" ]; then
install_package "$1"
else
install_package "$2"
fi
}
linux_update()
{
if [ -x /usr/bin/zypper ]; then
header "Updating Linux via zypper"
zypper refresh
zypper update -y
elif [ -x /usr/bin/dnf ]; then
header "Updating Linux via dnf"
dnf update -y
elif [ -x /usr/bin/yum ]; then
header "Updating Linux via yum"
yum update -y
elif [ -x /usr/bin/apt-get ]; then
header "Updating Linux via apt-get"
apt-get update -y
# Needed by Astra Linux, Ubuntu and Debian. Should be installed before updating Linux but after updating the repo!
if [ -x /usr/bin/apt-get ]; then
install_package apt-utils
fi
apt-get upgrade -y
elif [ -x /sbin/apk ]; then
header "Updating Linux via apk"
apk update
apk upgrade
fi
}
remove_directory ()
{
if [ -z "$1" ]; then
return 1
fi
if [ ! -e "$1" ]; then
return 2
fi
rm -rf "$1"
if [ -e "$1" ]; then
echo " --- directory not completely deleted! ---"
ls -l "$1"
echo " --- directory not completely deleted! ---"
fi
return 0
}
set_security_limits()
{
header "Set security limits"
local REQ_NOFILES_SOFT=80000
local REQ_NOFILES_HARD=80000
local SET_SOFT=
local SET_HARD=
local UPD=FALSE
NOFILES_SOFT=$(su - $DOMINO_USER -c ulimit' -n')
NOFILES_HARD=$(su - $DOMINO_USER -c ulimit' -Hn')
if [ "$NOFILES_SOFT" -ne "$REQ_NOFILES_SOFT" ]; then
SET_SOFT=$REQ_NOFILES_SOFT
UPD=TRUE
fi
if [ "$NOFILES_HARD" -ne "$REQ_NOFILES_HARD" ]; then
SET_HARD=$REQ_NOFILES_HARD
UPD=TRUE
fi
if [ "$UPD" = "FALSE" ]; then
return 0
fi
echo >> /etc/security/limits.conf
echo "# -- Domino configuation begin --" >> /etc/security/limits.conf
if [ -n "$SET_HARD" ]; then
echo "$DOMINO_USER hard nofile $SET_HARD" >> /etc/security/limits.conf
fi
if [ -n "$SET_SOFT" ]; then
echo "$DOMINO_USER soft nofile $SET_SOFT" >> /etc/security/limits.conf
fi
echo "# -- Domino configuation end --" >> /etc/security/limits.conf
echo >> /etc/security/limits.conf
}
config_firewall()
{
header "Configure firewall"
if [ ! -e /usr/sbin/firewalld ]; then
echo "Firewalld not installed"
return 0
fi
# Add well known NRPC port
cp "/local/github/domino-startscript/extra/firewalld/nrpc.xml" /etc/firewalld/services/
# Reload just in case to let firewalld notice the change
firewall-cmd --reload
# enable NRPC, HTTP, HTTPS and SMTP in firewall
firewall-cmd --zone=public --permanent --add-service={nrpc,http,https}
# reload firewall changes
firewall-cmd --reload
}
add_notes_user()
{
local NAME1000=$(id -nu 1000 2>/dev/null)
local GROUP1000=$(id -ng 1000 2>/dev/null)
if [ -n "$NAME1000" ]; then
header "Existing user detected"
echo User : $NAME1000
echo Group: $GROUP1000
echo
export DOMINO_USER=$NAME1000
export DOMINO_GROUP=$GROUP1000
return 0
fi
header "Add Notes user"
local NOTES_UID=$(id -u $DOMINO_USER 2>/dev/null)
if [ -n "$NOTES_UID" ]; then
echo "$DOMINO_USER user already exists (UID:$NOTES_UID)"
return 0
fi
# creates user and group
groupadd $DOMINO_GROUP
useradd $DOMINO_USER -g $DOMINO_GROUP -m
}
install_software()
{
# adds epel repository for additional software packages on RHEL/CentOS/Fedora platforms
header "Installing required Linux packages"
case "$LINUX_ID_LIKE" in
*fedora*|*rhel*)
install_package epel-release
;;
esac
# epel on Oracle Linux has a different name
case "$LINUX_PRETTY_NAME" in
Oracle*)
local MAJOR_VER=$(echo $LINUX_PLATFORM_ID | cut -d ":" -f2)
install_package oracle-epel-release-$MAJOR_VER
;;
esac
# install required and useful packages
install_packages tar sysstat net-tools jq gettext git ncurses unzip
# additional packages by platform
if [ "$LINUX_ID" = "photon" ]; then
# Photon OS packages
install_package bindutils
elif [ -x /usr/bin/apt-get ]; then
# Ubuntu needs different packages and doesn't provide some others
install_package bind9-utils
elif [ -x /sbin/apk ]; then
install_packages bash outils-sha256 curl gettext gawk openssl shadow procps
else
# RHEL/CentOS/Fedora
case "$LINUX_ID_LIKE" in
*fedora*|*rhel*)
install_packages procps-ng which bind-utils
;;
esac
fi
}
create_directory ()
{
TARGET_FILE=$1
OWNER=$2
GROUP=$3
PERMS=$4
if [ -z "$TARGET_FILE" ]; then
return 0
fi
if [ -e "$TARGET_FILE" ]; then
return 0
fi
mkdir -p "$TARGET_FILE"
if [ ! -z "$OWNER" ]; then
chown $OWNER:$GROUP "$TARGET_FILE"
fi
if [ ! -z "$PERMS" ]; then
chmod "$PERMS" "$TARGET_FILE"
fi
return 0
}
create_directories()
{
header "Create directory structure /local ..."
# creates local directory structure with the right owner
create_directory /local $DOMINO_USER $DOMINO_GROUP 777
create_directory /local/software $DOMINO_USER $DOMINO_GROUP 777
create_directory /local/notesdata $DOMINO_USER $DOMINO_GROUP $DIR_PERM
create_directory /local/translog $DOMINO_USER $DOMINO_GROUP $DIR_PERM
create_directory /local/daos $DOMINO_USER $DOMINO_GROUP $DIR_PERM
create_directory /local/nif $DOMINO_USER $DOMINO_GROUP $DIR_PERM
create_directory /local/ft $DOMINO_USER $DOMINO_GROUP $DIR_PERM
create_directory /local/backup $DOMINO_USER $DOMINO_GROUP $DIR_PERM
create_directory /local/github $DOMINO_USER $DOMINO_GROUP $DIR_PERM
}
install()
{
header "Cloning/updating repositories"
cd /local/github
if [ -e /local/github/domino-container ]; then
cd /local/github/domino-container
git pull
else
git clone https://github.com/HCL-TECH-SOFTWARE/domino-container.git
git checkout develop
fi
if [ -e /local/github/domino-startscript ]; then
cd /local/github/domino-startscript
git pull
else
git clone https://github.com/nashcom/domino-startscript.git
git checkout develop
fi
local CONFIG_DIR=~/.DominoContainer
local CONFIG_FILE=$CONFIG_DIR/build.cfg
mkdir -p "$CONFIG_DIR"
cp /local/github/domino-container/build.cfg "$CONFIG_FILE"
sed -i 's%# SOFTWARE_DIR=/local/software%SOFTWARE_DIR=/local/software%' "$CONFIG_FILE"
header "Installing/updating Domino Container Control (dominoctl)"
cd /local/github/domino-startscript
./install_dominoctl
header "Installing/updating Domino Download (domdownload.sh)"
./domdownload.sh -connect install
}
detect_container_env()
{
if [ -x /usr/bin/podman ] || [ -x /usr/local/bin/podman ]; then
CONTAINER_CMD=podman
return 0
fi
if [ -x /usr/bin/nerdctl ] || [ -x /usr/local/bin/nerdctl ]; then
CONTAINER_CMD=nerdctl
return 0
fi
if [ -x /usr/bin/docker ] || [ -x /usr/local/bin/docker ]; then
CONTAINER_CMD=docker
return 0
fi
}
install_container_env()
{
header "Installing container environment"
if [ -n "$CNT" ]; then
install_package "$CNT"
else
if [ -x /usr/bin/apt-get ]; then
# On Ubuntu the standard Docker package is too old
install_package curl
curl -fsSL https://get.docker.com | bash -
# install_packages docker.io docker-buildx docker-compose-v2
elif [ -x /sbin/apk ]; then
# Alpine Linux Docker install
install_package docker
header "Enabling and starting Docker"
if [ -x /sbin/openrc ]; then
header "Enabling and starting Docker"
openrc default
rc-service docker start
rc-update add docker default
openrc default
fi
return 0
else
# Assume Redhat/CentOS compatible environments
install_package yum-utils
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
install_packages docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
fi
fi
systemctl enable --now docker
}
print_runtime()
{
echo
# the following line does not work on OSX
# echo "Completed in" $(date -d@$SECONDS -u +%T)
hours=$((SECONDS / 3600))
seconds=$((SECONDS % 3600))
minutes=$((seconds / 60))
seconds=$((seconds % 60))
h=""; m=""; s=""
if [ ! $hours = "1" ] ; then h="s"; fi
if [ ! $minutes = "1" ] ; then m="s"; fi
if [ ! $seconds = "1" ] ; then s="s"; fi
if [ ! $hours = 0 ] ; then echo "Completed in $hours hour$h, $minutes minute$m and $seconds second$s"
elif [ ! $minutes = 0 ] ; then echo "Completed in $minutes minute$m and $seconds second$s"
else echo "Completed in $seconds second$s"; fi
}
must_be_root()
{
if [ "$EUID" = "0" ]; then
return 0
fi
if [ "$(id -u)" = "0" ]; then
return 0
fi
log_error "Installation requires root permissions. Switch to root or try 'sudo'"
exit 1
}
# -- Main logic --
SAVED_DIR=$(pwd)
LINUX_VERSION=$(cat /etc/os-release | grep "VERSION_ID="| cut -d= -f2 | xargs)
LINUX_PRETTY_NAME=$(cat /etc/os-release | grep "PRETTY_NAME="| cut -d= -f2 | xargs)
LINUX_ID=$(cat /etc/os-release | grep "^ID="| cut -d= -f2 | xargs)
LINUX_ID_LIKE=$(cat /etc/os-release | grep "^ID_LIKE="| cut -d= -f2 | xargs)
LINUX_PLATFORM_ID=$(cat /etc/os-release | grep "^PLATFORM_ID="| cut -d= -f2 | xargs)
if [ -z "$LINUX_PRETTY_NAME" ]; then
echo "Unsupported platform!"
exit 1
fi
LINUX_VM_INFO=
if [ -n "$(uname -r|grep microsoft)" ]; then
LINUX_VM_INFO="on WSL"
fi
header "Nash!Com Container Environment Installer for $LINUX_PRETTY_NAME $LINUX_VM_INFO"
must_be_root
linux_update
install_software
add_notes_user
create_directories
install
set_security_limits
config_firewall
detect_container_env
if [ -z "$CONTAINER_CMD" ]; then
install_container_env
else
log_ok "Container environment [$CONTAINER_CMD] already installed"
fi
cd $SAVED_DIR
cd /local/github/domino-container
print_runtime
echo
if [ ! -e ~/.DominoDownload/download.token ]; then
header "Configure Domino Download Token"
# Script needs to be invoked interactive to be able to read token
bash -i domdownload -token
fi
header "Container environment setup completed"
echo
echo "Switch to cloned GitHub container project directory and start the container build script"
echo
echo "cd /local/github/domino-container"
echo "./build.sh"
echo
exit 0