TURN_API_KEY and TURN_SECRET fix

sry , my last fix wasn't consistent to the other replacements
now we can update not only the default value of TURN_API_KEY and TURN_SECRET

some note:
maybe someone can change the TURN_SECRET value "secret" in something like "turnsecret" to not run into trouble with other "secret" value(s) in the backend section.
This commit is contained in:
3x3cut0r 2023-02-23 14:30:40 +01:00 committed by GitHub
parent 6c6ebb647a
commit 3cffdf57d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -128,10 +128,10 @@ if [ ! -f "$CONFIG" ]; then
fi
if [ ! -z "$TURN_API_KEY" ]; then
sed -i "s|#apikey = the-api-key-for-the-rest-service|apikey = $TURN_API_KEY|" "$CONFIG"
sed -i "s|#apikey =.*|apikey = $TURN_API_KEY|" "$CONFIG"
fi
if [ ! -z "$TURN_SECRET" ]; then
sed -i "s|#secret = 6d1c17a7-c736-4e22-b02c-e2955b7ecc64|secret = $TURN_SECRET|" "$CONFIG"
sed -i "s|#secret =.*|secret = $TURN_SECRET|" "$CONFIG"
fi
if [ ! -z "$TURN_SERVERS" ]; then
sed -i "s|#servers =.*|servers = $TURN_SERVERS|" "$CONFIG"