-
Notifications
You must be signed in to change notification settings - Fork 29
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
V4 #135
base: master
Are you sure you want to change the base?
V4 #135
Conversation
This change will require a major version change as it will break compatibility. It manages a setting in the main section, which is on the agent side and should not have been specified in the master section which happens with the puppet::server class.
CA is now managed by /etc/puppetlabs/puppetserver/services.d/ca.cfg https://docs.puppet.com/puppetserver/2.7/configuration.html#service-bootstrapping
In response to the following warning from puppetserver-daemon.log: OpenJDK 64-Bit Server VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0
fixes #136 |
@@ -81,6 +74,16 @@ | |||
notify => Service['puppetserver'], | |||
} | |||
|
|||
file { 'puppetserver_ca_cfg': | |||
ensure => 'file', | |||
path => '/etc/puppetlabs/puppetserver/services.d/ca.cfg', |
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.
Only if you want to support older puppetserver versions the path needs to be parameterized.
See voxpupuli/puppet-puppetserver#52 for details.
For a v4 release I would suggest to drop support of stringified bools ;) |
No description provided.