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.
13 lines
316 B
13 lines
316 B
2 years ago
|
#!/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 Script...."
|
||
|
bash /config/extended/scripts/AutoConfig.bash
|
||
|
exit $?
|