毎月第一日曜日にバッチ実行を systemd の timer で
cron でやろうと思うと地味に面倒くさいやつ。
systemd の timer では日付指定と曜日指定が and 条件となるようなので、普通に書ける。
設定例:
[Unit]
Description=Run command on first sunday of the month.
[Timer]
OnCalendar=Sun *-*-1,2,3,4,5,6,7 03:00:00
cron でやろうと思うと地味に面倒くさいやつ。
systemd の timer では日付指定と曜日指定が and 条件となるようなので、普通に書ける。
設定例:
[Unit]
Description=Run command on first sunday of the month.
[Timer]
OnCalendar=Sun *-*-1,2,3,4,5,6,7 03:00:00