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
354 B

#!/usr/bin/with-contenv bash
2 years ago
if [ "$enableVideoScript" = "true" ]; then
echo "Starting Video.bash in 2 min..."
sleep 2m
bash /config/extended/scripts/Video.sh
else
2 years ago
echo "Automatic Start Disabled, to enable set enableVideoScript=true"
echo "Manually run using this command:"
echo "bash /config/extended/scripts/Video.sh"
sleep infinity
fi
exit $?