Skip to content

Commit

Permalink
Merge pull request #19 from raphink/dev/logrotate
Browse files Browse the repository at this point in the history
rotate attribute must be passed as a string
  • Loading branch information
Jonathan committed Sep 29, 2015
2 parents 5d9ba87 + fba271f commit 3a6d822
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@
logrotate::rule { 'radacct':
path => "${freeradius::fr_logpath}/radacct/*/*.log",
rotate_every => 'day',
rotate => 7,
rotate => '7',
create => false,
missingok => true,
compress => true,
Expand All @@ -214,7 +214,7 @@
logrotate::rule { 'checkrad':
path => "${freeradius::fr_logpath}/checkrad.log",
rotate_every => 'week',
rotate => 1,
rotate => '1',
create => true,
missingok => true,
compress => true,
Expand All @@ -225,7 +225,7 @@
logrotate::rule { 'radiusd':
path => "${freeradius::fr_logpath}/radius*.log",
rotate_every => 'week',
rotate => 26,
rotate => '26',
create => true,
missingok => true,
compress => true,
Expand Down

0 comments on commit 3a6d822

Please sign in to comment.