Puppet - Elasticsearch prevent restart

So whenever I do a puppet apply to configure elasticsearch, it causes the elasticsearch service to either close if I have the option 'Status => disabled' or it will cause it to restart if I comment the status option out. I was wondering if there was some way for puppet to apply changes to elasticsearch without causing the service to restart so that I can manually restart the application.

Hi,

There is a restart_on_change parameter which you can set to false.

Hey, that is super helpful! Thanks, I'll try that.