A free, open, self-hosted app platform (GNU AGPLv3): one-click app deploys, Traefik reverse proxy with automatic SSL, rootless Docker support, gluetun VPN routing, and a web dashboard to manage it all. Free & open forever to self-host; optional paid hosted services fund it. See PROMISE.md. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
22 lines
690 B
Bash
Executable File
22 lines
690 B
Bash
Executable File
#!/bin/bash
|
|
|
|
replaceHexKeys()
|
|
{
|
|
local file="$1"
|
|
|
|
# Only scan for hex placeholders that actually exist in the file
|
|
local existing_placeholders=$(sudo grep -oE 'RANDOMIZEDHEX[0-9]*' "$file" 2>/dev/null | sort -u)
|
|
|
|
if [[ -n "$existing_placeholders" ]]; then
|
|
while IFS= read -r placeholder; do
|
|
if [[ -n "$placeholder" ]]; then
|
|
local hex_key
|
|
hex_key=$(openssl rand -hex 32)
|
|
|
|
sudo sed -i "s/${placeholder}/${hex_key}/g" "$file"
|
|
checkSuccess "Updated ${placeholder} in $(basename "$file") with a new hex key."
|
|
fi
|
|
done <<< "$existing_placeholders"
|
|
fi
|
|
}
|