forked from e621ng/e621ng

Remove whenever, it's not used in prod. Prod uses systemd timers. This executes the daily task on container startup. My PC isn't going to run when this would execute 99% of the time.
5 lines
131 B
Bash
Executable File
5 lines
131 B
Bash
Executable File
#!/usr/bin/env sh
|
|
echo "Running daily maintenance"
|
|
cd /app && bundle exec rake maintenance:daily
|
|
echo "Finished daily maintenance"
|