Làm thế nào để cron.d thông báo cho hệ thống?


16

Nếu tôi đặt một tập lệnh mới vào /etc/cron.d/làm thế nào để hệ thống biết cách chèn nó vào crontab toàn cầu?

Tôi có cần phải khởi động lại một quy trình để chọn nó không?

initchạy crontab mỗi phút và sau đó nó sẽ được quét lại không?

Nó sử dụng inotify và xem /etc/cron.d?

Không thể tìm thấy bất cứ điều gì quá rõ ràng và tôi luôn tự hỏi

Câu trả lời:


20

Từ cron (8):

   Additionally,  cron  reads  the files in /etc/cron.d: it treats the files in
   /etc/cron.d as in the same way as the /etc/crontab file

   …

   cron then wakes up every minute, examining all stored crontabs, checking each com‐
   mand to see if it should be run in the current minute.  When  executing  commands,
   any  output  is  mailed  to  the owner of the crontab (or to the user named in the
   MAILTO environment variable in the crontab, if such exists).  The children  copies
   of  cron  running these processes have their name coerced to uppercase, as will be
   seen in the syslog and ps output.

   Additionally, cron checks each minute to see if its spool directory's modtime  (or
   the  modtime  on  /etc/crontab) has changed, and if it has, cron will then examine
   the modtime on all crontabs and reload those which have changed.  Thus  cron  need
   not  be  restarted  whenever a crontab file is modified.  Note that the crontab(1)
   command updates the modtime of the spool directory whenever it changes a crontab.

Cũng lưu ý rằng cron không "chèn nội dung của cron.d vào crontab toàn cầu" - những nội dung này là độc lập:

   However, they are independent of /etc/crontab: they do not, for example, inherit 
   environment  variable  settings  from it.

5
Vì vậy, nó sẽ tự kiểm tra mỗi phút, bao gồm/etc/cron.d/
Tom O'Connor
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.