[entrypoint.sh]: change environment for alpine

This commit is contained in:
Jesús 2021-04-08 11:25:57 -05:00
parent 37dbc490bb
commit 7b8280c1d5
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env sh
# Validate environment variables
@ -112,22 +112,22 @@ scan-path=/var/lib/git/repositories
EOF
# Append clone-prefix
if [[ ! -z "$CGIT_CLONE_PREFIX" ]]; then
if [ ! -z "$CGIT_CLONE_PREFIX" ]; then
echo "# Specify some default clone prefixes" >> /etc/cgitrc
echo "clone-prefix=$CGIT_CLONE_PREFIX" >> /etc/cgitrc
fi
if [[ ! -z "$CGIT_ROOT_TITLE" ]]; then
if [ ! -z "$CGIT_ROOT_TITLE" ]; then
echo "# Set the title and heading of the repository index page" >> /etc/cgitrc
echo "root-title=$CGIT_ROOT_TITLE" >> /etc/cgitrc
fi
if [[ ! -z "$CGIT_DESC" ]]; then
if [ ! -z "$CGIT_DESC" ]; then
echo "# Set description repository" >> /etc/cgitrc
echo "root-desc=$CGIT_DESC" >> /etc/cgitrc
fi
if [[ ! -z "$CGIT_SNAPSHOT" ]]; then
if [ ! -z "$CGIT_SNAPSHOT" ]; then
echo "# Allow download of tar.gz, tar.bz2, and tar.xz formats" >> /etc/cgitrc
echo "snapshots=$CGIT_SNAPSHOT" >> /etc/cgitrc
fi