-
Notifications
You must be signed in to change notification settings - Fork 236
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make logrotate.conf into a template with defined type #15
base: master
Are you sure you want to change the base?
Conversation
+1 |
If i'm reading this right, it would not touch the logrotate.conf if you don't specify to edit it correct? that would be awesome. Documented my thoughts in #33 |
+1 |
I guess since this PR is a total mess. There were 2 commits added which having nothing to do with the actual PR. I've cleaned it up myself (https://github.com/baurmatt/puppet-logrotate/tree/fix_pr15) but want to do some refactoring before creating a new PR. My idea was, to have one template which can be used for /etc/logrotate.conf and /etc/logrotate.d/* since those files are exactly the same beside the additional "<%= rpath %> {" and "}" lines. @rodjek some thoughts about this? |
case $ensure { | ||
'latest': { $_ensure = 'latest' } | ||
false,'absent': { $_ensure = 'absent' } | ||
default: { $_ensure = 'presest' } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo - should be "present"
It is useful to be able to set defaults for all logrotate logs, especially for those that may be vendor installed and not specifically managed by puppet.
This update converts logrotate.conf from a static file to a template using a defined type very similar to the one used for rules.