Crontab cron.d

Alle weiteren Dienste, die nicht in die drei oberen Foren gehören.
Antworten
Benutzeravatar
bouillon
Beiträge: 45
Registriert: 14.11.2003 17:41:23
Wohnort: Köln
Kontaktdaten:

Crontab cron.d

Beitrag von bouillon » 07.11.2007 15:19:02

Hallo,

wie schafe ich das die dateien in /etc/cron.d ausgeführt werden? Muss
da etwas ins crontab rein?

Ich habe SID.

Meine Crontab ist standart

Code: Alles auswählen

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user  command

*  *    * * *   root    cd / && run-parts --report /etc/cron.minutly
29 *    * * *   root    cd / && run-parts --report /etc/cron.hourly
39 4    * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6    * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6    1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
und in cron.d ist sowas:

Code: Alles auswählen

# /etc/cron.d/radio * *  * * *   root    /etc/cron.hourly/restartMaildrophost

#mo
* *   * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.my/so/ABEND2 )
Viele Grüße
Vlad


Grüße
Vlad[/code]
Ich penne unter LINUX
http://www.myafisha.de

Benutzeravatar
Saxman
Beiträge: 4233
Registriert: 02.05.2005 21:53:52
Lizenz eigener Beiträge: MIT Lizenz
Wohnort: localhost

Beitrag von Saxman » 14.11.2007 12:02:11

Am einfachsten ist es deine scripte unter /etc/cron.daily , /etc/cron.hourly usw. abzulegen.
Je nachdem wie oft sie ausgeführt werden sollen.
Dann führt cron sie sie auch aus.

Wenn du was eigenes machen willst musst du ansonsten die crontab anpassen.

Schönen Gruß,
"Unix is simple. It just takes a genius to understand its simplicity." - Dennis Ritchie

Debian GNU/Linux Anwenderhandbuch | df.de Verhaltensregeln | Anleitungen zum Review und zum Verfassen von Wiki Artikeln.

Antworten