From e4c9df8b5ec8f30ab18716b8286653dfcb16ca06 Mon Sep 17 00:00:00 2001 From: juarez Date: Thu, 10 Aug 2023 21:41:03 +0200 Subject: [PATCH] Remove old comment of exporter-setup.sh --- ccp/modules/exporter-setup.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/ccp/modules/exporter-setup.sh b/ccp/modules/exporter-setup.sh index c109f9c..53e3773 100644 --- a/ccp/modules/exporter-setup.sh +++ b/ccp/modules/exporter-setup.sh @@ -3,7 +3,6 @@ if [ "$ENABLE_EXPORTER" == true ]; then log INFO "Exporter setup detected -- will start Exporter service." OVERRIDE+=" -f ./$PROJECT/modules/exporter-compose.yml" - # TODO: Generate password in another way so that not all passwords are the same? EXPORTER_DB_PASSWORD="$(echo \"This is a salt string to generate one consistent password for the exporter. It is not required to be secret.\" | openssl rsautl -sign -inkey /etc/bridgehead/pki/${SITE_ID}.priv.pem | base64 | head -c 30)" EXPORTER_API_KEY="$(echo \"This is a salt string to generate one consistent API KEY for the exporter. It is not required to be secret.\" | openssl rsautl -sign -inkey /etc/bridgehead/pki/${SITE_ID}.priv.pem | base64 | head -c 64)" fi