24 lines
567 B
YAML
24 lines
567 B
YAML
---
|
|
- name: Create etcd user
|
|
user: name=etcd shell=/bin/nologin home=/var/lib/etcd2
|
|
|
|
- name: Install etcd binaries
|
|
copy:
|
|
src={{ local_release_dir }}/etcd/bin/{{ item }}
|
|
dest={{ bin_dir }}
|
|
owner=etcd
|
|
mode=u+x
|
|
with_items:
|
|
- etcdctl
|
|
- etcd
|
|
notify:
|
|
- restart daemons
|
|
|
|
- name: Create etcd2 binary symlink
|
|
file: src=/usr/local/bin/etcd dest=/usr/local/bin/etcd2 state=link
|
|
|
|
- name: Copy etcd2.service systemd file
|
|
template:
|
|
src: systemd-etcd2.service.j2
|
|
dest: /lib/systemd/system/etcd2.service
|
|
notify: restart daemons
|