espidev / ebackup

An easy and reliable plugin for backups on Spigot servers! Supports SFTP!
https://www.spigotmc.org/resources/ebackup-simple-and-reliable-backups-for-your-server-supports-ftp-sftp.69917/
GNU General Public License v3.0
54 stars 16 forks source link

Support more cron syntax #41

Closed sybenx closed 2 years ago

sybenx commented 2 years ago

I tried to use '0,30 * * * *' and '*/30 * * * *' to get the backup to run every 30 minutes but I get a parsing error

https://frontbackend.com/linux/cron-every-30-minutes https://stackoverflow.com/questions/584770/how-would-i-get-a-cron-job-to-run-every-30-minutes

espidev commented 2 years ago

eBackup has slightly different cron syntax because it also supports seconds, you need it like this:

* 0,30 * * * *

* */30 * * * *

espidev commented 2 years ago

Closing to inactivity