You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
347 B
14 lines
347 B
#!/usr/bin/with-contenv bash
|
|
if [ "$enableAutoConfig" != "true" ]; then
|
|
echo "AutoConfig Script disabled, enable by setting parameter: enableAutoConfig=true"
|
|
sleep infinity
|
|
else
|
|
echo "Waiting for Radarr to startup..."
|
|
sleep 2m
|
|
fi
|
|
|
|
echo "Starting AutoConfig.bash Script...."
|
|
bash /config/extended/scripts/AutoConfig.bash
|
|
sleep infinity
|
|
exit $?
|