1
0
mirror of https://github.com/krislamo/puppet-rsnapshot synced 2024-09-20 01:10:35 +00:00

Merge pull request #13 from hellp/patch-1

Fix: monthday in cronjob cannot be 0
This commit is contained in:
Norbert Varzariu 2018-04-15 23:09:36 +02:00 committed by GitHub
commit b72f1dfb36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -96,7 +96,7 @@ class rsnapshot::params {
monthly => { monthly => {
minute => '0..59', minute => '0..59',
hour => '0..23', # you could also do: ['21..23','0..4','5'], hour => '0..23', # you could also do: ['21..23','0..4','5'],
monthday => '0..28', monthday => '1..28',
month => '*', month => '*',
weekday => '*', weekday => '*',
}, },