Config.in 854 B

1234567891011121314151617181920212223
  1. config BR2_PACKAGE_DCRON
  2. bool "dcron"
  3. depends on BR2_USE_MMU # fork()
  4. depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  5. help
  6. dcron is a time-based job scheduler with anacron-like
  7. features. It works as a background daemon that parses
  8. individual crontab files and executes commands on behalf of
  9. the users in question.
  10. Upon installation, this package will enable a system level
  11. cron daemon with hourly, daily, weekly and monthly crontabs.
  12. However, it doesn't allow non root users to create their own
  13. crontab file. This is because /var/spool/cron/crontabs is
  14. non user writable.
  15. Typically, a crontab group is created on the system and
  16. users allowed to create crontab entries are added into this
  17. group, while crontab executable is owned by root:crontab
  18. with sgid bit enabled.
  19. http://www.jimpryor.net/linux/dcron.html