SO> Anybody know of a way to deploy a template to multiple servers, but
SO> have each configuration simultaneously centralized on another server?
How about delegate_to?
- hosts: myservers
tasks:
- name: put foo on myservers
template:
src: foo.txt.j2
dest: /etc/foo.txt
- name: put foo for myservers onto centralserver
template:
src: foo.txt.j2
dest: "/srv/myservers/{{ inventory_hostname }}"
delegate_to: centralserver
That seems to work for me; it's not *simultaneous* simultaneous, but it's
in one playbook anyway. :^)
-Josh (
j...@care.com)
(apologies for the automatic corporate disclaimer that follows)
This email is intended for the person(s) to whom it is addressed and may contain information that is PRIVILEGED or CONFIDENTIAL. Any unauthorized use, distribution, copying, or disclosure by any person other than the addressee(s) is strictly prohibited. If you have received this email in error, please notify the sender immediately by return email and delete the message and any attachments from your system.