Merge pull request #82 from rackn/etcd-sync

Fix etcd synchronize to other nodes from the downloader
This commit is contained in:
Antoine Legrand 2016-01-21 20:39:52 +01:00
commit e95c4739f5

View file

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