diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/cronie/cronie/crontab | 6 | ||||
-rw-r--r-- | meta/recipes-extended/cronie/cronie_1.4.12.bb | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/meta/recipes-extended/cronie/cronie/crontab b/meta/recipes-extended/cronie/cronie/crontab index cc9169eda90..22c4feb2dc1 100644 --- a/meta/recipes-extended/cronie/cronie/crontab +++ b/meta/recipes-extended/cronie/cronie/crontab @@ -7,4 +7,8 @@ SHELL=/bin/sh PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin -# m h dom mon dow user command +# m h dom mon dow user command +# 1 * * * * root cd / && run-parts /etc/cron.hourly +# 30 7 * * * root cd / && run-parts /etc/cron.daily +# 42 7 * * 7 root cd / && run-parts /etc/cron.weekly +# 55 7 1 * * root cd / && run-parts /etc/cron.monthly diff --git a/meta/recipes-extended/cronie/cronie_1.4.12.bb b/meta/recipes-extended/cronie/cronie_1.4.12.bb index e40475662d3..977332b3fc8 100644 --- a/meta/recipes-extended/cronie/cronie_1.4.12.bb +++ b/meta/recipes-extended/cronie/cronie_1.4.12.bb @@ -63,7 +63,7 @@ do_install_append () { mkdir -p ${D}${sysconfdir}/cron.weekly mkdir -p ${D}${sysconfdir}/cron.monthly touch ${D}${sysconfdir}/cron.deny - + # below setting is necessary to allow normal user using crontab # setgid for crontab binary @@ -78,3 +78,4 @@ do_install_append () { } FILES_${PN} += "${sysconfdir}/cron*" +CONFFILES_${PN} += "${sysconfdir}/crontab" |