diff --git a/cron/cron-lib.pl b/cron/cron-lib.pl index 4262f23d5..145770907 100755 --- a/cron/cron-lib.pl +++ b/cron/cron-lib.pl @@ -1693,6 +1693,13 @@ elsif ($job->{'special'} eq 'weekly') { 'months' => '*', 'weekdays' => 0 }; } +elsif ($job->{'special'} eq 'monthly') { + $job = { 'mins' => 0, + 'hours' => 0, + 'days' => '1', + 'months' => '*', + 'weekdays' => '*' }; + } elsif ($job->{'special'} eq 'yearly') { $job = { 'mins' => 0, 'hours' => 0,