Skip to content

Commit

Permalink
Reload httpd_service when ganglia conf is copied in sites-enabled folder
Browse files Browse the repository at this point in the history
This fix aws/aws-parallelcluster#1322

Signed-off-by: Luca Carrogu <[email protected]>
  • Loading branch information
lukeseawalker committed Oct 2, 2019
1 parent ed5d3f7 commit c63dbd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions recipes/_ganglia_install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@
# Setup ganglia-web.conf apache config
execute "copy ganglia apache conf" do
command "cp /etc/ganglia-webfrontend/apache.conf /etc/apache2/sites-enabled/ganglia.conf"
notifies :reload, "service[#{node['cfncluster']['ganglia']['httpd_service']}]", :immediately
not_if "test -f /etc/apache2/sites-enabled/ganglia.conf"
end

Expand Down
2 changes: 1 addition & 1 deletion recipes/_master_base_config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
end

service node['cfncluster']['ganglia']['httpd_service'] do
supports restart: true
supports restart: true, reload: true
action %i[enable start]
end
end
Expand Down

0 comments on commit c63dbd1

Please sign in to comment.