0
我想要做這樣的事情:Ansible 2.2:重新啓動過程中的處理程序使用的變量名
- copy:
src: file{{ item }}.xml
dest: target_file{{ item }}.xml
notify: restart process{{ item }}
with_sequence: start=1 end={{ number_of_process }}
預期的結果:過程1重新啓動只有當配置文件target_file1已被修改,處理2中重新啓動只有當配置文件target_file2已被修改時等
實際結果是當修改一個配置文件時重新啓動所有進程。
任何想法只重啓所需的進程?