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.
18 lines
464 B
18 lines
464 B
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
config=/config/recyclarr.yml
|
|
if [[ "$RECYCLARR_CREATE_CONFIG" = true && ! -f "$config" ]]; then
|
|
echo "Creating default recyclarr.yml file..."
|
|
recyclarr config create
|
|
fi
|
|
|
|
# If the script has any arguments, invoke the CLI instead
|
|
if [ "$#" -gt 0 ]; then
|
|
recyclarr "$@"
|
|
else
|
|
echo "Starting cron schedule using: $CRON_SCHEDULE"
|
|
echo "$CRON_SCHEDULE /cron.sh" > /tmp/crontab
|
|
supercronic -passthrough-logs /tmp/crontab
|
|
fi
|