-
Notifications
You must be signed in to change notification settings - Fork 17
/
elabctl.sh
executable file
·652 lines (559 loc) · 21.9 KB
/
elabctl.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
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
#!/usr/bin/env bash
# https://www.elabftw.net
# https://github.com/elabftw/elabctl/
# © 2022 Nicolas CARPi @ Deltablot
# License: GPLv3
declare -r ELABCTL_VERSION='5.0.3'
# default backup dir
declare BACKUP_DIR='/var/backups/elabftw'
# defines the time until older mysql dumps will be deleted (+0 = older than 24h, +1 = older than 48h and so on)
declare DUMP_DELETE_DAYS=+0
# default config file for docker-compose
declare CONF_FILE='/etc/elabftw.yml'
# default data directory
declare DATA_DIR='/var/elabftw'
# default conf file is no conf file
declare ELABCTL_CONF_FILE="using default values (no config file found)"
# by default use the new compose command
# will be overridden by select-dc-cmd()
declare DC="docker compose"
function access-logs
{
docker logs "${ELAB_WEB_CONTAINER_NAME}" 2>/dev/null
}
# display ascii logo
function ascii
{
echo ""
echo " _ _ _____ _______ __"
echo " ___| | __ _| |__ | ___|_ _\ \ / /"
echo " / _ \ | / _| | '_ \| |_ | | \ \ /\ / / "
echo "| __/ |__| (_| | |_) | _| | | \ V V / "
echo " \___|_____\__,_|_.__/|_| |_| \_/\_/ "
echo " "
echo ""
}
# create a mysqldump and a borg snapshot of the uploaded files
function backup
{
mysql-backup
borg-backup
}
function borg-backup
{
set -eu
# add these into env so it is picked up by borg
export BORG_REPO="${BORG_REPO}"
export BORG_PASSPHRASE="${BORG_PASSPHRASE}"
if [[ -v BORG_REMOTE_PATH ]]; then
export BORG_REMOTE_PATH="${BORG_REMOTE_PATH}"
fi
# we add to the borg the uploaded files (web directory) and also the backup dir containing dumps of MySQL
"${BORG_PATH}" create "::$(hostname)-$(date +%F_%H-%M)" "${DATA_DIR}/web" "${BACKUP_DIR}"
"${BORG_PATH}" prune --keep-daily="${BORG_KEEP_DAILY:-14}" --keep-monthly="${BORG_KEEP_MONTHLY:-6}"
}
# generate info for reporting a bug
function bugreport
{
echo "Collecting information for a bug report…"
echo "======================================================="
echo -n "Elabctl version: "
echo $ELABCTL_VERSION
echo -n "Elabftw version: see on sysconfig page"
echo "======================================================="
echo -n "Docker version: "
docker version | grep -m 1 Version | awk '{print $2}'
echo "======================================================="
echo "Operating system: "
uname -a
cat /etc/os-release
echo "======================================================="
echo "Memory:"
free -h
echo "======================================================="
}
function checkDeps
{
need_to_quit=0
for bin in dialog docker curl sudo
do
if ! hash "$bin" 2>/dev/null; then
echo "Error: $bin not found in the \$PATH. Please install the program '$bin' or fix your \$PATH."
need_to_quit=1
fi
done
if [ $need_to_quit -eq 1 ]; then
exit 1
fi
}
function error-logs
{
docker logs "${ELAB_WEB_CONTAINER_NAME}" 1>/dev/null
}
function get-user-conf
{
# download the config file in the current directory
echo "Downloading the config file 'elabctl.conf' in current directory..."
if [ -f elabctl.conf ]; then
mv -v elabctl.conf elabctl.conf.old
fi
curl -Ls https://github.com/elabftw/elabctl/raw/master/elabctl.conf -o elabctl.conf
echo "Downloaded elabctl.conf."
echo "Edit it and move it in ~/.config or /etc."
echo "Or leave it there and always use elabctl from this directory."
echo "Then do 'elabctl install' again."
}
function has-disk-space
{
# check if we have enough space on disk to update the docker image
docker_folder=$(docker info --format '{{.DockerRootDir}}')
# use default if previous command didn't work
safe_folder=${docker_folder:-/var/lib/docker}
space_test=$(($(stat -f --format="%a*%S" "$safe_folder")/1024**3 < 5))
if [[ $space_test -ne 0 ]]; then
echo "ERROR: There is less than 5 Gb of free space available on the disk where $safe_folder is located!"
df -h "$safe_folder"
echo ""
read -p "Remove old images and containers to free up some space? (y/N)" -n 1 -r
echo ""
if [[ $REPLY =~ ^[Yy]$ ]]; then
docker system prune
fi
exit 1
fi
}
function help
{
version
echo "
Usage: elabctl [OPTION] [COMMAND]
elabctl [ --help | --version ]
elabctl install
elabctl backup
Commands:
access-logs Show last lines of webserver access log
backup Backup your installation
borg-backup Backup the files with borgbackup
bugreport Gather information about the system for a bug report
error-logs Show last lines of webserver error log
help Show this text
info Display the configuration variables and status
initialize Initialize the MySQL database for eLabFTW
install Configure and install required components
logs Show logs of the containers
mysql Open a MySQL prompt in the 'mysql' container
mysql-backup Make a MySQL dump file for backup
refresh Recreate the containers if they need to be
restart Restart the containers
self-update Update the elabctl script
status Show status of running containers
start Start the containers
stop Stop the containers
uninstall Uninstall eLabFTW and purge data
update Pull the image defined, restart containers and update database schema
update-db-schema Update the MySQL database schema
version Display elabctl version
"
}
function info
{
echo "Backup directory: ${BACKUP_DIR}"
echo "Data directory: ${DATA_DIR}"
echo "Web container name: ${ELAB_WEB_CONTAINER_NAME}"
echo "MySQL container name: ${ELAB_MYSQL_CONTAINER_NAME}"
echo ""
echo "Status:"
status
}
function initialize
{
is-installed
docker exec -it "${ELAB_WEB_CONTAINER_NAME}" bin/init db:install
}
# install pip and docker-compose, get elabftw.yml and configure it with sed
function install
{
checkDeps
# do nothing if there are files in there
if [ "$(ls -A $DATA_DIR 2>/dev/null)" ]; then
echo "It looks like eLabFTW is already installed. Delete the ${DATA_DIR} folder to reinstall."
exit 1
fi
# init vars
# if you don't want any dialog
declare unattended=${ELAB_UNATTENDED:-0}
declare servername=${ELAB_SERVERNAME:-localhost}
declare hasdomain=${ELAB_HASDOMAIN:-0}
declare usehttps=${ELAB_USEHTTPS:-1}
declare useselfsigned=${ELAB_USESELFSIGNED:-0}
# exit on error
set -e
title="Install eLabFTW"
backtitle="eLabFTW installation"
# show welcome screen and ask if defaults are fine
if [ "$unattended" -eq 0 ]; then
# because answering No to dialog equals exit != 0
set +e
# welcome screen
dialog --backtitle "$backtitle" --title "$title" --msgbox "\nWelcome to the install of eLabFTW :)\n
This script will automatically install eLabFTW in a Docker container." 0 0
dialog --colors --backtitle "$backtitle" --title "$title" --yes-label "Looks good to me" --no-label "Download example conf and quit" --yesno "\nHere is what will happen:\n
The main configuration file will be created at: \Z4${CONF_FILE}\Zn\n
A directory holding elabftw data (mysql + uploaded files) will be created at: \Z4${DATA_DIR}\Zn\n
The backups will be created at: \Z4${BACKUP_DIR}\Zn\n\n
If you wish to change these settings, quit now and edit the file \Z4elabctl.conf\Zn" 0 0
if [ $? -eq 1 ]; then
get-user-conf
exit 0
fi
fi
# create the data dir
mkdir -pv $DATA_DIR
if [ $? -eq 1 ]; then
sudo mkdir -pv $DATA_DIR
fi
declare TMP_DIR=$(mktemp -d)
declare TMP_CONF_FILE="${TMP_DIR}/elabftw.yml"
if [ "$unattended" -eq 0 ]; then
set +e
########################################################################
# start asking questions #
# what we want here is the domain name of the server or its IP address #
# and also if we want to use Let's Encrypt or not
########################################################################
# ASK SERVER OR LOCAL?
dialog --backtitle "$backtitle" --title "$title" --yes-label "Server" --no-label "My computer" --yesno "\nAre you installing it on a Server or a personal computer?" 0 0
if [ $? -eq 1 ]; then
# local computer
servername="localhost"
else
# server
## DOMAIN NAME OR IP BLOCK
dialog --backtitle "$backtitle" --title "$title" --yesno "\nIs a domain name pointing to this server?\n\nAnswer yes if this server can be reached using a domain name. Answer no if you can only reach it with an IP address.\n" 0 0
if [ $? -eq 0 ]; then
hasdomain=1
# ask for domain name
servername=$(dialog --backtitle "$backtitle" --title "$title" --inputbox "\nPlease enter your domain name below:\nExample: elabftw.example.org\n" 0 0 --output-fd 1)
else
# no domain is not supported, exit
dialog --backtitle "$backtitle" --title "$title" --msgbox "\nInstallation without a proper domain name is not supported.\n" 0 0
exit 1
fi
## END DOMAIN NAME OR IP BLOCK
# ASK IF WE WANT HTTPS AT ALL FIRST
dialog --backtitle "$backtitle" --title "$title" --yes-label "Use HTTPS" --no-label "Disable HTTPS" --yesno "\nDo you want to run the HTTPS enabled container or a normal HTTP server? Note: disabling HTTPS means you will use another webserver as a proxy for TLS connections.\n\nChoose 'Disable HTTPS' if you already have a webserver capable of terminating TLS requests running (Apache/Nginx/HAProxy).\nChoose 'Use HTTPS' if unsure.\n" 0 0
if [ $? -eq 1 ]; then
# use HTTP
usehttps=0
else
if [ $hasdomain -eq 1 ]; then
# ASK IF SELF-SIGNED OR PROPER CERT
dialog --backtitle "$backtitle" --title "$title" --yes-label "Use correct certificate" --no-label "Use self-signed" --yesno "\nDo you want to use a proper TLS certificate (coming from Let's Encrypt or provided by you) or use a self-signed certificate? The self-signed certificate will be automatically generated for you, but browsers will display a warning when connecting.\n\nChoose 'Use self-signed' if you do not have a domain name.\n" 0 0
if [ $? -eq 0 ]; then
# want correct cert
dialog --backtitle "$backtitle" --title "$title" --msgbox "\nSee the documentation on how to configure your TLS certificate before starting the containers.\n" 0 0
else
# use self signed
useselfsigned=1
dialog --backtitle "$backtitle" --title "$title" --msgbox "\nA self-signed certificate will be generated upon container start. But really you should try and use a domain name ;)\n" 0 0
fi
fi
fi
fi
fi
set -e
echo 40 | dialog --backtitle "$backtitle" --title "$title" --gauge "Creating folder structure. You will be asked for your password (bottom left of the screen)." 20 80
sudo mkdir -pv ${DATA_DIR}/{web,mysql}
sudo chmod -Rv 700 ${DATA_DIR}
echo "Executing: sudo chown -v 999:999 ${DATA_DIR}/mysql"
sudo chown -v 999:999 ${DATA_DIR}/mysql
echo "Executing: sudo chown -v 101:101 ${DATA_DIR}/web"
sudo chown -v 101:101 ${DATA_DIR}/web
sleep 2
echo 50 | dialog --backtitle "$backtitle" --title "$title" --gauge "Grabbing the docker-compose configuration file" 20 80
# make a copy of an existing conf file
if [ -e $CONF_FILE ]; then
echo 55 | dialog --backtitle "$backtitle" --title "$title" --gauge "Making a copy of the existing configuration file." 20 80
\cp $CONF_FILE ${CONF_FILE}.old
fi
# get a config file already filled with random passwords/keys
curl --silent "https://get.elabftw.net/?config" -o "$TMP_CONF_FILE"
sleep 1
# elab config
echo 50 | dialog --backtitle "$backtitle" --title "$title" --gauge "Adjusting configuration" 20 80
sed -i -e "s/SERVER_NAME=localhost/SERVER_NAME=$servername/" $TMP_CONF_FILE
sed -i -e "s:/var/elabftw:${DATA_DIR}:" $TMP_CONF_FILE
sed -i -e "s/container_name: elabftw/container_name: ${ELAB_WEB_CONTAINER_NAME}/" $TMP_CONF_FILE
sed -i -e "s/container_name: mysql/container_name: ${ELAB_MYSQL_CONTAINER_NAME}/" $TMP_CONF_FILE
# disable https
scheme="https://"
if [ $usehttps -eq 0 ]; then
sed -i -e "s/DISABLE_HTTPS=false/DISABLE_HTTPS=true/" $TMP_CONF_FILE
scheme="http://"
fi
# enable letsencrypt
if [ $hasdomain -eq 1 ] && [ $useselfsigned -eq 0 ]; then
# even if we don't use Let's Encrypt, for using TLS certs we need this to be true, and volume mounted
sed -i -e "s:ENABLE_LETSENCRYPT=false:ENABLE_LETSENCRYPT=true:" $TMP_CONF_FILE
sed -i -e "s:#- /etc/letsencrypt:- /etc/letsencrypt:" $TMP_CONF_FILE
fi
sed -i -e "s#SITE_URL=#SITE_URL=$scheme$servername#" $TMP_CONF_FILE
sleep 1
# setup restrictive permissions
chmod 600 "$TMP_CONF_FILE"
# now move conf file at proper location
# use sudo in case it's in /etc and we are not root
sudo mv "$TMP_CONF_FILE" "$CONF_FILE"
rmdir -v ${TMP_DIR}
# final screen
if [ "$unattended" -eq 0 ]; then
dialog --colors --backtitle "$backtitle" --title "Installation finished" --msgbox "\nCongratulations, eLabFTW was successfully installed! :)\n\n
\Z1====>\Zn Finish the installation by configuring TLS certificates.\n\n
\Z1====>\Zn Then start the containers with: \Zb\Z4elabctl start\Zn\n\n
\Z1====>\Zn Then import the database structure with: \Zb\Z4elabctl initialize\Zn\n\n
\Z1====>\Zn Go to https://$servername once started!\n\n
In the mean time, check out what to do after an install:\n
\Z1====>\Zn https://doc.elabftw.net/sysadmin-guide.html#setting-up-email\n\n
The configuration file for docker-compose is here: \Z4$CONF_FILE\Zn\n
Your data folder is: \Z4${DATA_DIR}\Zn. It contains the MySQL database and uploaded files.\n
You can use 'docker logs -f ${ELAB_WEB_CONTAINER_NAME}' to follow the starting up of the container.\n" 20 80
fi
}
function is-installed
{
if [ ! -f $CONF_FILE ]; then
echo "###### ERROR ##########################################################"
echo "Configuration file (${CONF_FILE}) could not be found!"
echo "Did you run the install command?"
echo "#######################################################################"
exit 1
fi
}
function logs
{
docker logs "${ELAB_MYSQL_CONTAINER_NAME}"
docker logs "${ELAB_WEB_CONTAINER_NAME}"
}
function mysql
{
docker exec -it "${ELAB_MYSQL_CONTAINER_NAME}" bash -c 'mysql -u$MYSQL_USER -p$MYSQL_PASSWORD $MYSQL_DATABASE --default-character-set=utf8mb4'
}
# create a mysqldump and remove old backups
function mysql-backup
{
if ! ls -A "${BACKUP_DIR}" > /dev/null 2>&1; then
mkdir -pv "${BACKUP_DIR}"
if [ $? -eq 1 ]; then
sudo mkdir -pv ${BACKUP_DIR}
fi
fi
set -e
# get clean date
local -r date=$(date +%Y-%m-%d_%H-%M-%S) # 2016-02-10_20-12-45
local -r dumpfile="${BACKUP_DIR}/mysql_dump-${date}.sql"
# dump sql
docker exec "${ELAB_MYSQL_CONTAINER_NAME}" bash -c 'mysqldump -u$MYSQL_USER -p$MYSQL_PASSWORD -r dump.sql --no-tablespaces $MYSQL_DATABASE 2>&1 | grep -v "Warning: Using a password"' || echo ">> Containers must be running to do the backup!"
# copy it from the container to the host
docker cp "${ELAB_MYSQL_CONTAINER_NAME}:dump.sql" "$dumpfile"
# compress it to the max
gzip -f --best "$dumpfile"
# delete old dumps
if [[ "${DUMP_DELETE_DAYS}" != "disabled" ]]; then
find ${BACKUP_DIR} -mindepth 1 -name '*.sql.gz' -ctime ${DUMP_DELETE_DAYS} -delete
fi
}
function refresh
{
start
}
function restart
{
stop
start
}
# determine if we use "docker compose" or "docker-compose"
function select-dc-cmd
{
if hash docker-compose > /dev/null 2>&1; then
echo "Info: using 'docker-compose' command instead of 'docker compose' plugin command"
export DC="docker-compose"
fi
}
function self-update
{
me=$(command -v "$0")
TMP_DIR=$(mktemp -d)
tmp_filepath="${TMP_DIR}/elabctl"
echo "Downloading new version to $tmp_filepath"
curl -sL https://raw.githubusercontent.com/elabftw/elabctl/master/elabctl.sh -o "$tmp_filepath"
chmod -v +x "$tmp_filepath"
mv -v "$tmp_filepath" "$me"
rmdir -v ${TMP_DIR}
}
function start
{
is-installed
eval "$DC" -f "$CONF_FILE" up -d
}
function status
{
is-installed
eval "$DC" -f "$CONF_FILE" ps
}
function stop
{
is-installed
eval "$DC" -f "$CONF_FILE" down
}
function uninstall
{
stop
local -r backtitle="eLabFTW uninstall"
local title="Uninstall"
set +e
dialog --backtitle "$backtitle" --title "$title" --yesno "\nWarning! You are about to delete everything related to eLabFTW on this computer!\n\nThere is no 'go back' button. Are you sure you want to do this?\n" 0 0
if [ $? != 0 ]; then
exit 1
fi
dialog --backtitle "$backtitle" --title "$title" --yesno "\nDo you want to delete the backups, too?" 0 0
if [ $? -eq 0 ]; then
rmbackup='y'
else
rmbackup='n'
fi
dialog --backtitle "$backtitle" --title "$title" --ok-label "Skip timer" --cancel-label "Cancel uninstall" --pause "\nRemoving everything in 10 seconds. Stop now you fool!\n" 20 40 10
if [ $? != 0 ]; then
exit 1
fi
clear
# remove config file and eventual backup
if [ -f "${CONF_FILE}.old" ]; then
rm -vf "${CONF_FILE}.old"
echo "[x] Deleted ${CONF_FILE}.old"
fi
if [ -f "$CONF_FILE" ]; then
rm -vf "$CONF_FILE"
echo "[x] Deleted $CONF_FILE"
fi
# remove data directory
if [ -d "$DATA_DIR" ]; then
sudo rm -rvf "$DATA_DIR"
echo "[x] Deleted $DATA_DIR"
fi
# remove backup dir
if [ $rmbackup == 'y' ] && [ -d "$BACKUP_DIR" ]; then
rm -rvf "$BACKUP_DIR"
echo "[x] Deleted $BACKUP_DIR"
fi
# remove docker images
docker rmi elabftw/elabimg || true
docker rmi mysql:5.7 || true
docker rmi mysql:8.0 || true
echo ""
echo "[✓] Everything has been obliterated. Have a nice day :)"
}
function update
{
is-installed
has-disk-space
echo "Do you want to make a backup before updating? (y/N)"
read -r dobackup
if [ "$dobackup" = "y" ]; then
backup
echo "Backup done, now updating."
fi
eval "$DC" -f "$CONF_FILE" pull
refresh
echo "Do you want to update the MySQL database schema? (recommended) (y/N)"
read -r doDbUpdate
if [ "$doDbUpdate" = "y" ]; then
update-db-schema
fi
echo "You are now running the latest eLabFTW version."
echo "Make sure to read the CHANGELOG!"
echo "=> https://github.com/elabftw/elabftw/releases/latest"
}
function update-db-schema
{
is-installed
# wait for mysql container to start, but only if there is one
if [ "$(docker ps | grep ${ELAB_MYSQL_CONTAINER_NAME})" ]; then
echo -n "Waiting for the MySQL container to be ready before running update..."
while [ "$(docker inspect -f {{.State.Health.Status}} ${ELAB_MYSQL_CONTAINER_NAME})" != "healthy" ]; do echo -n .; sleep 2; done; echo
fi
echo "Running command 'bin/console db:update' in the eLabFTW container now"
docker exec -it "${ELAB_WEB_CONTAINER_NAME}" bin/console db:update
}
function upgrade
{
update
}
function usage
{
help
}
function version
{
echo "elabctl © 2017 Nicolas CARPi - https://www.elabftw.net"
echo "elabctl version: $ELABCTL_VERSION"
}
# SCRIPT BEGIN
# only one argument allowed
if [ $# != 1 ]; then
help
exit 1
fi
# deal with --help and --version
case "$1" in
-h|--help)
help
exit 0
;;
-v|--version)
version
exit 0
;;
esac
# default settings that could be overriden by config
declare ELAB_WEB_CONTAINER_NAME='elabftw'
declare ELAB_MYSQL_CONTAINER_NAME='mysql'
# Now we load the configuration file for custom directories set by user
if [ -f /etc/elabctl.conf ]; then
source /etc/elabctl.conf
ELABCTL_CONF_FILE="/etc/elabctl.conf"
fi
# elabctl.conf in ~/.config
if [ -f "${HOME}/.config/elabctl.conf" ]; then
source "${HOME}/.config/elabctl.conf"
ELABCTL_CONF_FILE="${HOME}/.config/elabctl.conf"
fi
# if elabctl is in current dir it has top priority
if [ -f elabctl.conf ]; then
source elabctl.conf
ELABCTL_CONF_FILE="elabctl.conf"
fi
# check that the path for the data dir is absolute
if [ "${DATA_DIR:0:1}" != "/" ]; then
echo "Error in config file: DATA_DIR is not an absolute path!"
echo "Edit elabctl.conf and add a full path to the directory."
exit 1
fi
# available commands
declare -A commands
for valid in access-logs backup borg-backup bugreport error-logs help info infos initialize install logs mysql mysql-backup self-update start status stop refresh restart uninstall update update-db-schema upgrade usage version
do
commands[$valid]=1
done
if [[ ${commands[$1]} ]]; then
# exit if variable isn't set
set -u
ascii
echo "Info: using elabctl configuration file: $ELABCTL_CONF_FILE"
echo "Info: using elabftw configuration file: $CONF_FILE"
select-dc-cmd
echo "---------------------------------------------"
$1
else
help
exit 1
fi