blob: 14e140562de0279ce56853016446ac6f0d839c07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
#
# Copyright (C) Markus Witt
# Copyright (C) Birte Kristina Friesel
#
# SPDX-License-Identifier: CC0-1.0
set -e
if ! [ -r travelynx.conf ]; then
echo "Configuration file (travelynx.conf) is missing. Did you set up the '/local' mountpoint?"
exit 1
fi
. local/email-transport.sh
if [ "$1" = worker ]; then
exec perl index.pl worker
fi
perl index.pl database migrate
exec hypnotoad -f index.pl
|