You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All of the various services tend to write their own config files, based on what's there and the version... right now this causes an endless cycle:
A puppet run is started
Puppet sees the config file has changed, so it installs it's own from the template
The service resource restarts because it sees the config file changes
Upon restarting, the service sees that it's config file has changed, and overwrites it
GOTO 1
Impact
The service keeps all the values in the config file the same, so no great harm is done, but it causes runs that should write no changes to have 4 or 5 changes everytime.
Solution?
I think the only way to fix this will be to move away from managing the config files as a file resource from a template source, and instead set individual values in the config file using file_line instead.
The text was updated successfully, but these errors were encountered:
The endless cycle
All of the various services tend to write their own config files, based on what's there and the version... right now this causes an endless cycle:
Impact
The service keeps all the values in the config file the same, so no great harm is done, but it causes runs that should write no changes to have 4 or 5 changes everytime.
Solution?
I think the only way to fix this will be to move away from managing the config files as a
file
resource from atemplate
source, and instead set individual values in the config file usingfile_line
instead.The text was updated successfully, but these errors were encountered: