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.

25 lines
994 B

2 years ago
#!/usr/bin/with-contenv bash
echo "-----------------------------------------------------------------------------"
echo " |~) _ ._ _| _ ._ _ |\ |o._ o _ |~|_|_|"
echo " |~\(_|| |(_|(_)| | || \||| |_|(_||~| | |<"
echo " Presents: lidarr-extended"
echo " Docker Version: $dockerVersion"
echo " May the beats be with you!"
echo "-----------------------------------------------------------------------------"
2 years ago
echo "Donate: https://github.com/sponsors/RandomNinjaAtk"
echo "Project: https://github.com/RandomNinjaAtk/docker-lidarr-extended"
echo "Support: https://github.com/RandomNinjaAtk/docker-lidarr-extended/discussions"
echo "-----------------------------------------------------------------------------"
2 years ago
if [ "$autoStart" = "true" ]; then
2 years ago
echo "Automatic Start Enabled, starting in 2 min..."
2 years ago
sleep 2m
2 years ago
bash /config/extended/scripts/start.sh
else
echo "Automatic Start Disabled, manually run using this command:"
echo "bash /config/extended/scripts/start.sh"
2 years ago
sleep infinity
2 years ago
fi
exit $?