Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
puppet-freeradius
Commits
3a6d8229
Commit
3a6d8229
authored
Sep 29, 2015
by
Jonathan
Browse files
Merge pull request #19 from raphink/dev/logrotate
rotate attribute must be passed as a string
parents
5d9ba878
fba271f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
manifests/init.pp
View file @
3a6d8229
...
...
@@ -203,7 +203,7 @@ class freeradius (
logrotate::rule
{
'radacct'
:
path
=>
"
${freeradius::fr_logpath}
/radacct/*/*.log"
,
rotate_every
=>
'day'
,
rotate
=>
7
,
rotate
=>
'7'
,
create
=>
false
,
missingok
=>
true
,
compress
=>
true
,
...
...
@@ -214,7 +214,7 @@ class freeradius (
logrotate::rule
{
'checkrad'
:
path
=>
"
${freeradius::fr_logpath}
/checkrad.log"
,
rotate_every
=>
'week'
,
rotate
=>
1
,
rotate
=>
'1'
,
create
=>
true
,
missingok
=>
true
,
compress
=>
true
,
...
...
@@ -225,7 +225,7 @@ class freeradius (
logrotate::rule
{
'radiusd'
:
path
=>
"
${freeradius::fr_logpath}
/radius*.log"
,
rotate_every
=>
'week'
,
rotate
=>
26
,
rotate
=>
'
26
'
,
create
=>
true
,
missingok
=>
true
,
compress
=>
true
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment