| @ -0,0 +1,52 @@ | |||
| # Edit this file to introduce tasks to be run by cron. | |||
| # | |||
| # Each task to run has to be defined through a single line | |||
| # indicating with different fields when the task will be run | |||
| # and what command to run for the task | |||
| # | |||
| # To define the time you can provide concrete values for | |||
| # minute (m), hour (h), day of month (dom), month (mon), | |||
| # and day of week (dow) or use '*' in these fields (for 'any'). | |||
| # | |||
| # Notice that tasks will be started based on the cron's system | |||
| # daemon's notion of time and timezones. | |||
| # | |||
| # Output of the crontab jobs (including errors) is sent through | |||
| # email to the user the crontab file belongs to (unless redirected). | |||
| # | |||
| MAILTO="celestino.rey@gmail.com" | |||
| # For example, you can run a backup of all your user accounts | |||
| # at 5 a.m every week with: | |||
| # 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/ | |||
| # | |||
| # For more information see the manual pages of crontab(5) and cron(8) | |||
| # | |||
| # m h dom mon dow command | |||
| # a las 6 de la mañana el primer día de la semana | |||
| 0 6 * * 1 /usr/local/bin/syncNC2LaCie | |||
| # a la 1 de la mañana todos los días | |||
| 0 1 * * * /usr/local/bin/copyDBK8S | |||
| 0 2 * * * /usr/local/bin/detectaMal | |||
| # a las 0 horas todos los días | |||
| 0 0 * * * /usr/local/bin/lanzaCron | |||
| # a las 0:05 horas el primer día de la semana | |||
| 5 0 * * 1 /usr/local/bin/copyMediawikiDB | |||
| # a las 0:10 horas el primer día de la semana | |||
| #10 0 * * 1 /usr/local/bin/copyGogsDB | |||
| # a las 0:15 horas el primer día de la semana | |||
| 15 0 * * 1 /usr/local/bin/copyReyMotaApps | |||
| # a las 0:20 horas el primer día de la semana | |||
| 20 0 * * 1 /usr/local/bin/copyNextcloudDB | |||
| # a las 5 de la mañana del día 1 de cada mes | |||
| # lo desactivo el 14/11/23 debido a que quité el directorio /mnt/cluster | |||
| #0 5 1 * * restic -r /mnt/Family/restic-repo backup /mnt/cluster/ -p /home/creylopez/.restic | |||
| # a las 5 y media de la mañana del día 1 de cada mes | |||
| #30 5 1 * * restic -r /mnt/Family/restic-repo backup /mnt/Externo/airsonic -p /home/creylopez/.restic | |||
| # Lo desactivo. no me es útil esta manera de escuchar podcasts | |||
| #*/5 * * * * /usr/local/bin/etiquetaPodcasts | |||
| # a las 0:15 horas el primer día de la semana | |||
| 15 2 * * 1 /usr/local/bin/copyJugaralpadelDB | |||
| # para IONOS, para que los dominios apunten a mi red | |||
| # lo paso a root | |||
| #*/1 * * * * /usr/bin/flock -n /tmp/ipupdate.lck /usr/local/bin/domain-connect-dyndns update --all --config /root/dyndns/settings.txt | |||