aboutsummaryrefslogtreecommitdiff
path: root/services/docker/git-server/app/lighttpd-wrapper.bash
diff options
context:
space:
mode:
Diffstat (limited to 'services/docker/git-server/app/lighttpd-wrapper.bash')
-rwxr-xr-xservices/docker/git-server/app/lighttpd-wrapper.bash10
1 files changed, 8 insertions, 2 deletions
diff --git a/services/docker/git-server/app/lighttpd-wrapper.bash b/services/docker/git-server/app/lighttpd-wrapper.bash
index 54079ad..70055e7 100755
--- a/services/docker/git-server/app/lighttpd-wrapper.bash
+++ b/services/docker/git-server/app/lighttpd-wrapper.bash
@@ -1,8 +1,14 @@
#!/usr/bin/bash
-set -e
+set -e -o pipefail
-[[ -f /git/user-info ]] || touch -a /git/user-info
+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