답변:
다음은 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 를 참조 하십시오 .