diff --git a/additional_install.sh b/additional_install.sh index a0948d0..e9aacb9 100755 --- a/additional_install.sh +++ b/additional_install.sh @@ -5,6 +5,8 @@ if [ "$SERVICE_DIR" == "" ]; then fi; if [[ "$NEXTCLOUD" == "yes" ]]; then + echo "Nextcloud install has started"; + 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 @@ -20,6 +22,8 @@ if [[ "$NEXTCLOUD" == "yes" ]]; then fi; if [[ "$BITWARDEN" == "yes" ]]; then + echo "Bitwarden install has started"; + git clone ssh://$GIT_REPO/$ORGANIZATION/bitwarden.git /tmp/bitwarden BITWARDEN_TOKEN=$(openssl rand -base64 48);