DebianのCron関連メモ

Debianの/etc/cron.weekly内に置いてるスクリプトが動作しない

* 本ページはプロモーションが含まれています

debian10(Buster)で動作させている状況で、バックアップスクリプト(backup.sh)を/etc/cron.weekly/下に配置していたが、どうやら動作していない。
もちろん、実行権限を与えているし、手動での動作も確認している。

他の機種を調べてみたところ、CentOSでは問題なく動作しているのにDebianは全て動作していないことが判明。

調べてみたところ、
run-parts(8) を参照すると、どうやら、.shや.plなどドットを含む拡張子は動作しないらしい

$ man 8 run-parts
....
If  the  --lsbsysinit  option  is given, then the names must not end in
       .dpkg-old  or .dpkg-dist or .dpkg-new or .dpkg-tmp, and must belong  to
       one  or more of the following namespaces: the LANANA-assigned namespace
       (^[a-z0-9]+$);   the   LSB   hierarchical   and   reserved   namespaces
       (^_?([a-z0-9_.]+-)+[a-z0-9]+$);  and  the  Debian cron script namespace
       (^[a-zA-Z0-9_-]+$).

Cronの実行日時 

ちなみに、cron.daily,weekly,monthlyの起動時刻は、/etc/crontabに記載されている

# Example of job definition:
# .---------------- minute (0 - 59)
# |  .------------- hour (0 - 23)
# |  |  .---------- day of month (1 - 31)
# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,f
ri,sat
# |  |  |  |  |
# *  *  *  *  * user-name command to be executed
17 *	* * *	root    cd / && run-parts --report /etc/cron.hourly
25 6	* * *	root	test -x /usr/sbin/anacron || ( cd / && run-parts --repor
t /etc/cron.daily )
47 6	* * 7	root	test -x /usr/sbin/anacron || ( cd / && run-parts --repor
t /etc/cron.weekly )
52 6	1 * *	root	test -x /usr/sbin/anacron || ( cd / && run-parts --repor
t /etc/cron.monthly )
#

Cronログ 

デフォルトではcronログは切り分け設定になっていないので、syslogに記録されている

# cat /var/log/syslog | grep cron -i

なので、/var/log/cron.logも生成されていない。 もし、cron.logとして、切り分ける場合は、rsyslog.conf内のcron欄のコメントを外す

# vim /etc/rsyslog.conf
cron.*                          /var/log/cron.log

# systemctl restart rsyslog

今回のメモはDebian10での状況であったが、同系のUbuntuでも該当するかもしれません


See also