]> git.openstreetmap.org Git - chef.git/commitdiff
Reload logstash on config change instead of restarting
authorTom Hughes <tom@compton.nu>
Wed, 1 Jun 2016 21:29:14 +0000 (22:29 +0100)
committerTom Hughes <tom@compton.nu>
Wed, 1 Jun 2016 21:29:37 +0000 (22:29 +0100)
cookbooks/logstash/recipes/default.rb

index 73198d5933daa41fff9c2b0f814b8c5982eb8087..86711fb314b698201c6ee61358c9841ece5935de 100644 (file)
@@ -45,7 +45,7 @@ template "/etc/logstash/conf.d/chef.conf" do
   user "root"
   group "root"
   mode 0644
-  notifies :restart, "service[logstash]"
+  notifies :reload, "service[logstash]"
 end
 
 file "/etc/logrotate.d/logstash" do
@@ -54,7 +54,7 @@ end
 
 service "logstash" do
   action [:enable, :start]
-  supports :status => true, :restart => true
+  supports :status => true, :restart => true, :reload => true
 end
 
 template "/etc/cron.daily/expire-logstash" do