diff --git a/systemd/send_credentials.sh b/systemd/send_credentials.sh index e20ee86b..9f9bfc25 100644 --- a/systemd/send_credentials.sh +++ b/systemd/send_credentials.sh @@ -10,6 +10,11 @@ while true; do docker cp /data/websoft9/credential_git websoft9-apphub:/websoft9/credentials docker cp websoft9-deployment:/var/websoft9/credential /data/websoft9/credential_deployment + content=$(cat /data/websoft9/credential_deployment) + username="admin" + password=$(echo "$content" | awk -F':' '{print $2}') + json="{\"username\":\"$username\",\"password\":\"$password\"}" + echo "$json" > /data/websoft9/credential_deployment docker cp /data/websoft9/credential_deployment websoft9-apphub:/websoft9/credentials docker cp websoft9-proxy:/var/websoft9/credential /data/websoft9/credential_proxy