7
7

More than 5 years have passed since last update.

chefのservice再起動タイミングの指定

Posted at

chefのcookbook郡の中のrecipe内、serviceの記述部分で不必要な再起動をしないための記述方法

cookbooks/munin-node/recipes/default.rb
template "/etc/munin/plugin-conf.d/nginx" do
  source "nginx"
  notifies :restart, "service[munin-node]"
end

service "munin-node" do
  supports :start => true, :restart => true, :enable => true
end

templateで記述したファイルが書き変わって実行された場合のみmunin-nodeのrestartが走る

7
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
7