Fix etcd synchronize to other nodes from the downloader

This commit is contained in:
Greg Althaus 2016-01-21 11:20:37 -06:00
parent 9e9aba4e3a
commit 28e530e005

View file

@ -3,12 +3,15 @@
user: name=etcd shell=/bin/nologin home=/var/lib/etcd user: name=etcd shell=/bin/nologin home=/var/lib/etcd
- name: Install etcd binaries - name: Install etcd binaries
copy: synchronize:
src={{ etcd_bin_dir }}/{{ item }} src: "{{ etcd_bin_dir }}/{{ item }}"
dest={{ bin_dir }} dest: "{{ bin_dir }}"
owner=etcd times: yes
mode=0755 archive: no
set_remote_user: false
delegate_to: "{{ groups['downloader'][0] }}"
with_items: with_items:
- etcdctl - etcdctl
- etcd - etcd
notify: restart etcd notify: restart etcd