回答:
これは、execute
リソースが収束したときにのみリソースが収束する例directory
です。
directory '/opt/foo' do
action :create
notifies :run, 'execute[custom command]', :immediately
end
execute 'custom command' do
command 'echo foo'
action :nothing
end
その他の例については、https://docs.chef.io/chef/resources.html#notificationsを参照してください。