13 lines
526 B
Bash
Executable File
13 lines
526 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! -e "$DATA_DIR/.env" ] ; then
|
|
source_pass="$(LC_ALL=C tr -dc A-Za-z0-9 </dev/urandom | head -c 40)"
|
|
cat > "$DATA_DIR/.env" <<EOF
|
|
ICECAST_SOURCE_PASSWORD=$source_pass
|
|
ICECAST_ADMIN_PASSWORD=$(LC_ALL=C tr -dc A-Za-z0-9 </dev/urandom | head -c 40)
|
|
ICECAST_RELAY_PASSWORD=$(LC_ALL=C tr -dc A-Za-z0-9 </dev/urandom | head -c 40)
|
|
LIQUIDSOAP_SOURCE_PASSWORD=$(LC_ALL=C tr -dc A-Za-z0-9 </dev/urandom | head -c 40)
|
|
OMA_CONFIG_Client1EnteteNext="Authorization: Basic $(echo "source:$source_pass" | base64)"
|
|
EOF
|
|
fi
|