-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinstall_domino.sh
executable file
·500 lines (365 loc) · 10.6 KB
/
install_domino.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
#!/bin/bash
############################################################################
# Copyright Nash!Com, Daniel Nashed 2023-2024 - APACHE 2.0 see LICENSE
############################################################################
# Domino on Linux installation script
# Version 4.0.0 16.07.2024
# - Installs required software
# - Adds notes:notes user and group
# - Creates directory structure in /local/ for the Domino server data (/local/notesdata, /local/translog, ...)
# - Installs NashCom Domino on Linux start script
# - Creates a new NRPC firewall rule and opens ports NRPC, HTTP, HTTPS and SMTP
# - Installs Domino with default options using silent install
# - Sets security limits
SCRIPT_NAME=$(readlink -f $0)
SCRIPT_DIR=$(dirname $SCRIPT_NAME)
# Get install options if specified
if [ -n "$1" ]; then
INSTALL_OPTIONS="$@"
fi
if [ -n "$DOWNLOAD_FROM" ]; then
echo "Downloading and installing software from [$DOWNLOAD_FROM]"
elif [ -n "$SOFTWARE_DIR" ]; then
echo "Installing software from [$SOFTWARE_DIR]"
else
SOFTWARE_DIR=/local/software
echo "Installing software from default location [$SOFTWARE_DIR]"
fi
# In any case set a software directory
if [ -z "$SOFTWARE_DIR" ]; then
SOFTWARE_DIR=/local/software
fi
if [ -z "$HCL_SOFTWARE" ]; then
HCL_SOFTWARE=/local/HCLSoftware
fi
if [ -z "$INSTALL_TEMP_DIR" ]; then
INSTALL_TEMP_DIR=/tmp/install_domino_$$
fi
if [ -z "$DOMINO_START_SCRIPT_GIT_ZIP" ]; then
DOMINO_START_SCRIPT_GIT_ZIP=https://github.com/nashcom/domino-startscript/archive/refs/heads/develop.zip
fi
if [ -z "$DOMINO_CONTAINER_GIT_ZIP" ]; then
DOMINO_CONTAINER_GIT_ZIP=https://github.com/HCL-TECH-SOFTWARE/domino-container/archive/refs/heads/develop.zip
fi
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
}
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
}
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
}
config_firewall()
{
if [ -n "$1" ]; then
STARTSCRIPT_DIR="$1"
fi
header "Configure firewall"
if [ -n "$STARTSCRIPT_SKIP_FIREWALL_CFG" ]; then
echo "Skip firewall config requested"
return 0
fi
if [ ! -e /usr/sbin/firewalld ]; then
echo "Firewalld not installed"
return 0
fi
if [ -z "$STARTSCRIPT_DIR" ]; then
echo "No start script directory found when configuring firewall settings"
return 0
fi
if [ -e "/etc/firewalld/services/nrpc.xml" ]; then
echo "Firewall settings for NRPC already configured"
return 0
fi
# Add well known NRPC port
cp "$STARTSCRIPT_DIR/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,smtp}
# reload firewall changes
firewall-cmd --reload
echo "Info: Firewall services enabled - TCP/Inbound: NRPC, HTTP, HTTPS, SMTP"
}
config_sudo()
{
if [ -n "$(cat /etc/sudoers | grep "notes" |grep "/usr/bin/systemctl")" ]; then
echo "sudo for 'notes' to execute systemctl is already configured"
return 0
fi
echo "%notes ALL= NOPASSWD: /usr/bin/systemctl *" >> /etc/sudoers
echo "sudo for 'notes' to execute systemctl configured"
}
add_notes_user()
{
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
}
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 "$SOFTWARE_DIR" $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
}
print_runtime()
{
echo
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
log_error "Installation requires root permissions. Switch to root or try 'sudo'"
exit 1
}
find_scripts()
{
local SEARCH_DIR=$1
if [ -z "$SEARCH_DIR" ]; then
SEARCH_DIR=$(pwd)
fi
if [ -z "$INSTALL_DOMDOWNLOAD_SCRIPT" ]; then
INSTALL_DOMDOWNLOAD_SCRIPT=$(find "$SEARCH_DIR" -maxdepth 2 -name "domdownload.sh")
fi
if [ -n "$INSTALL_DOMDOWNLOAD_SCRIPT" ]; then
START_SCRIPT_DIR="$(dirname "$INSTALL_DOMDOWNLOAD_SCRIPT")"
fi
if [ -n "$START_SCRIPT_DIR" ]; then
INSTALL_DOMINO_SCRIPT="$START_SCRIPT_DIR/install_script"
# Search for container porject on same level
SEARCH_DIR=$(dirname "$START_SCRIPT_DIR")
fi
if [ -z "$CONTAINER_SCRIPT_DIR" ]; then
CONTAINER_SCRIPT_DIR=$(find "$SEARCH_DIR" -type d -name "domino-container*")
fi
if [ -n "$CONTAINER_SCRIPT_DIR" ]; then
BUILD_SCRIPT="$CONTAINER_SCRIPT_DIR/build.sh"
fi
}
# -- 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 Domino Installer for $LINUX_PRETTY_NAME $LINUX_VM_INFO"
must_be_root
add_notes_user
create_directories
# Set posix locale for installing Domino to ensure the right res/C link
export LANG=C
if [ -z "SOFTWARE_DIR" ]; then
export SOFTWARE_DIR=/local/software
fi
mkdir -p "$INSTALL_TEMP_DIR"
cd "$INSTALL_TEMP_DIR"
header "Installing required software"
install_packages unzip ncurses jq procps
# Install sudo if not present. It's required for systemd
if [ ! -e /usr/bin/sudo ]; then
install_package sudo
fi
header "Download Domino Start Script Project"
# Check if projects exist already and determine scripts
find_scripts "$SCRIPT_DIR"
if [ -z "$START_SCRIPT_DIR" ]; then
if [ -e "$SOFTWARE_DIR/domino-startscript.zip" ]; then
unzip -q "$SOFTWARE_DIR/domino-startscript.zip"
else
curl -L "$DOMINO_START_SCRIPT_GIT_ZIP" -o domino-startscript.zip
unzip -q domino-startscript.zip
fi
else
echo "Using existing Start Script directory: $START_SCRIPT_DIR"
fi
if [ -z "$CONTAINER_SCRIPT_DIR" ]; then
header "Download Domino Container Project"
if [ -e "$SOFTWARE_DIR/domino-container.zip" ]; then
unzip -q "$SOFTWARE_DIR/domino-container.zip"
else
curl -L "$DOMINO_CONTAINER_GIT_ZIP" -o domino-container.zip
unzip -q domino-container.zip
fi
else
echo "Using existing Container Domino project: $CONTAINER_SCRIPT_DIR"
fi
# Check again after extract
find_scripts
if [ -z "$INSTALL_DOMDOWNLOAD_SCRIPT" ]; then
echo "Domino Download Script not found"
exit 1
fi
if [ -z "$START_SCRIPT_DIR" ]; then
echo "Domino Start Script dir not found"
exit 1
fi
if [ -z "$INSTALL_DOMINO_SCRIPT" ]; then
echo "Domino Start Script installer not found"
exit 1
fi
if [ -z "$BUILD_SCRIPT" ]; then
echo "Build script not found"
exit 1
fi
if [ -z "$CONTAINER_SCRIPT_DIR" ]; then
echo "Domino Container script dir not found"
exit 1
fi
if [ -z "$LinuxYumUpdate" ]; then
export LinuxYumUpdate=yes
fi
cp -f "$CONTAINER_SCRIPT_DIR/software/software.txt" "$SOFTWARE_DIR"
cp -f "$CONTAINER_SCRIPT_DIR/software/current_version.txt" "$SOFTWARE_DIR"
# Install Domino Download Script
"$INSTALL_DOMDOWNLOAD_SCRIPT" -connect install
if [ -n "$DOMDOWNLOAD_TOKEN" ]; then
"$INSTALL_DOMDOWNLOAD_SCRIPT" -token "$DOMDOWNLOAD_TOKEN"
fi
header "Installing Domino"
if [ -z "$INSTALL_OPTIONS" ]; then
echo "Install native via menu"
"$BUILD_SCRIPT" menu -installnative
else
echo "Install native silent"
"$BUILD_SCRIPT" domino $INSTALL_OPTIONS -installnative
fi
header "Installing Domino Start Script"
"$INSTALL_DOMINO_SCRIPT"
config_sudo
cd $SAVED_DIR
# Cleanup
remove_directory "$INSTALL_TEMP_DIR"
# remove_directory "$SOFTWARE_DIR"
echo
echo "Done"
print_runtime
echo