Skip to content

Commit

Permalink
Improve Puppet 4 compatibility
Browse files Browse the repository at this point in the history
The current implementation of the logrotate::rule is expecting an
integer as a string.

See rodjek/puppet-logrotate#46
  • Loading branch information
tohuwabohu committed May 24, 2015
1 parent f7e69db commit 54c674c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
##2014-XX-YY - Release 3.1.2
###Summary

Improve compatibility with Puppet 4.

##2014-04-15 - Release 3.1.1
###Summary

Expand Down
2 changes: 1 addition & 1 deletion manifests/setup.pp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
logrotate::rule { 'duply':
ensure => present,
path => "${duplicity::duply_log_dir}/*.log",
rotate => 5,
rotate => '5',
size => '100k',
compress => true,
missingok => true,
Expand Down

0 comments on commit 54c674c

Please sign in to comment.