HI
I have a code in my playbook like this :
* - name: Copy init scripts*
* template: src=file-server.conf.j2 dest=/etc/init/file-server.conf*
* register: init_script*
* notify: restart file-server*
*- name: Copy env scripts*
* template: src=file-server.env.j2 dest=/etc/default/file-server.env*
* register: env_script*
* notify: restart file-server *
I want to notify the handler for both tasks in one "handler". I tried :
* - name: restart file-server *
* service: name=file-server state=restarted*
* when: {{ item}}.changed*
* with_items:*
* - init_script*
* - env_script*
but it doesn't work!!
Any ideas ?
--
You received this message because you are subscribed to the Google Groups
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/ansible-project/b674135e-7011-48b6-bd12-1541682a1b35%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.