diff --git a/infrastructure/deploy.sh b/infrastructure/deploy.sh index 66af07136..45ab32282 100755 --- a/infrastructure/deploy.sh +++ b/infrastructure/deploy.sh @@ -330,7 +330,8 @@ rotate_secrets() { } # Setup configuration files and compose file for the deployment domain -ssh $SSH_USER@$SSH_HOST -p $SSH_PORT "SSH_USER=$SSH_USER SMTP_HOST=$SMTP_HOST SMTP_PORT=$SMTP_PORT SMTP_USERNAME=$SMTP_USERNAME SMTP_PASSWORD=$SMTP_PASSWORD ALERT_EMAIL=$ALERT_EMAIL MINIO_ROOT_USER=$MINIO_ROOT_USER MINIO_ROOT_PASSWORD=$MINIO_ROOT_PASSWORD /opt/opencrvs/infrastructure/setup-deploy-config.sh $HOST | tee -a $LOG_LOCATION/setup-deploy-config.log" +echo "Replacing {{variables}} from files" +ssh $SSH_USER@$SSH_HOST -p $SSH_PORT "SMTP_HOST=$SMTP_HOST SMTP_PORT=$SMTP_PORT SMTP_USERNAME=$SMTP_USERNAME SMTP_PASSWORD=$SMTP_PASSWORD ALERT_EMAIL=$ALERT_EMAIL MINIO_ROOT_USER=$MINIO_ROOT_USER MINIO_ROOT_PASSWORD=$MINIO_ROOT_PASSWORD bash /opt/opencrvs/infrastructure/setup-deploy-config.sh $HOST | tee -a $LOG_LOCATION/setup-deploy-config.log" # Takes in a space separated string of docker-compose.yml files # returns a new line separated list of images defined in those files