blob: 70055e7161862eaf64187792047bfd52272b56c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/bash
set -e -o pipefail
die() {
echo "$@" >&2
exit 1
}
[[ -n "$CRUPEST_ROOT_URL" ]] || die "CRUPEST_ROOT_URL is not set. It is needed to create clone url of repos."
[[ -f /git/user-info ]] || touch -a /git/user-info || die "Failed to create /git/user-info to save user accounts. Permission problem?"
exec 3>&1
exec 4>&1
exec lighttpd -D -f /app/lighttpd/lighttpd.conf
|