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>
20 lines
701 B
Bash
Executable File
20 lines
701 B
Bash
Executable File
#!/bin/bash
|
|
|
|
replaceRandomUsernames()
|
|
{
|
|
local file="$1"
|
|
|
|
# Only scan for placeholders that actually exist in the file
|
|
local existing_placeholders=$(sudo grep -oE 'RANDOMIZEDUSERNAME[0-9]+' "$file" 2>/dev/null | sort -u)
|
|
|
|
if [[ -n "$existing_placeholders" ]]; then
|
|
while IFS= read -r username_placeholder; do
|
|
if [[ -n "$username_placeholder" ]]; then
|
|
local random_username=$(generateRandomUsername)
|
|
sudo sed -i 's/'"${username_placeholder}"'/'"${random_username}"'/g' "$file"
|
|
checkSuccess "Updated ${username_placeholder} in $(basename "$file")."
|
|
fi
|
|
done <<< "$existing_placeholders"
|
|
fi
|
|
}
|