]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/elasticsearch/manifests/service/systemd.pp
Upgrade to 3rdparty version 0.9.4 of elasticsearch/elasticsearch
[dsa-puppet.git] / 3rdparty / modules / elasticsearch / manifests / service / systemd.pp
index 92f21606251d846f279b2dcbfdc822af6789e2f2..dee54e5973c363b9f8ec301c16934f0c5142f6e7 100644 (file)
@@ -119,7 +119,7 @@ define elasticsearch::service::systemd(
         group  => 'root',
         mode   => '0644',
         before => Service["elasticsearch-instance-${name}"],
-        notify => $notify_service
+        notify => $notify_service,
       }
 
     } elsif ($init_defaults != undef and is_hash($init_defaults) ) {
@@ -138,7 +138,7 @@ define elasticsearch::service::systemd(
         lens    => 'Shellvars.lns',
         changes => template("${module_name}/etc/sysconfig/defaults.erb"),
         before  => Service["elasticsearch-instance-${name}"],
-        notify  => $notify_service
+        notify  => $notify_service,
       }
 
     }
@@ -153,7 +153,7 @@ define elasticsearch::service::systemd(
         ensure  => $ensure,
         content => template($init_template),
         before  => Service["elasticsearch-instance-${name}"],
-        notify  => $notify_service
+        notify  => $notify_service,
       }
 
     }
@@ -165,13 +165,13 @@ define elasticsearch::service::systemd(
     file { "/usr/lib/systemd/system/elasticsearch-${name}.service":
       ensure    => 'absent',
       subscribe => Service["elasticsearch-instance-${name}"],
-      notify    => Exec["systemd_reload_${name}"]
+      notify    => Exec["systemd_reload_${name}"],
     }
 
     file { "${elasticsearch::params::defaults_location}/elasticsearch-${name}":
       ensure    => 'absent',
       subscribe => Service["elasticsearch-instance-${name}"],
-      notify    => Exec["systemd_reload_${name}"]
+      notify    => Exec["systemd_reload_${name}"],
     }
 
     $service_require = undef