OLD | NEW |
1 ## Variables | 1 ## Variables |
2 ## Debian default configuration | 2 ## Debian default configuration |
3 SHELL=/bin/sh | 3 SHELL=/bin/sh |
4 PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin | 4 PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin |
5 ## Variables set manually on cron::environment variable | 5 ## Variables set manually on cron::environment variable |
6 <% @cron_env.each do |env| -%> | 6 <% @cron_env.each do |env| -%> |
7 <%= env %> | 7 <%= env %> |
8 <% end -%> | 8 <% end -%> |
9 | 9 |
10 | 10 |
11 17 * * * * root cd / && run-parts --report /etc/cron.hourly | 11 17 * * * * root cd / && run-parts --report /etc/cron.hourly |
12 25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/c
ron.daily ) | 12 0 0 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cr
on.daily ) |
13 47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/
cron.weekly ) | 13 47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/
cron.weekly ) |
14 52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/
cron.monthly ) | 14 52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/
cron.monthly ) |
15 | 15 |
OLD | NEW |