Sign, not encrypt, to avoid openssl salt

This commit is contained in:
Martin Lablans 2022-10-28 10:37:51 +02:00
parent 3a668a1cce
commit 0cba5d315a
1 changed files with 1 additions and 1 deletions

View File

@ -5,5 +5,5 @@ function nngmSetup() {
log INFO "nNGM setup detected -- will start nNGM Connector."
OVERRIDE+="-f ./$PROJECT/nngm-compose.yml"
fi
CONNECTOR_POSTGRES_PASSWORD="$(echo \"This is a salt string to generate one consistent password. It is not required to be secret.\" | openssl rsautl -encrypt -inkey /etc/bridgehead/pki/${SITE_ID}.priv.pem | base64 | head -c 30)"
CONNECTOR_POSTGRES_PASSWORD="$(echo \"This is a salt string to generate one consistent password. It is not required to be secret.\" | openssl rsautl -sign -inkey /etc/bridgehead/pki/${SITE_ID}.priv.pem | base64 | head -c 30)"
}