diff --git a/additional_install.sh b/additional_install.sh index bd6d9e9..a0948d0 100755 --- a/additional_install.sh +++ b/additional_install.sh @@ -4,7 +4,7 @@ if [ "$SERVICE_DIR" == "" ]; then SERVICE_DIR="/etc/user/config/services"; fi; -if [[ "$NEXTCLOUD" == "YES" ]]; then +if [[ "$NEXTCLOUD" == "yes" ]]; then git clone ssh://$GIT_REPO/$ORGANIZATION/nextcloud.git /tmp/nextcloud sed -i "s/DOMAIN_NAME/$NEXTCLOUD_DOMAIN/g" /tmp/nextcloud/nextcloud-secret.json sed -i "s/USERNAME/$NEXTCLOUD_USERNAME/g" /tmp/nextcloud/nextcloud-secret.json @@ -19,7 +19,7 @@ if [[ "$NEXTCLOUD" == "YES" ]]; then cp -rv /tmp/nextcloud/firewall-nextcloud-server-smtp.json $SERVICE_DIR/nextcloud-secret.json; fi; -if [[ "$BITWARDEN" == "YES" ]]; then +if [[ "$BITWARDEN" == "yes" ]]; then git clone ssh://$GIT_REPO/$ORGANIZATION/bitwarden.git /tmp/bitwarden BITWARDEN_TOKEN=$(openssl rand -base64 48);