2018-07-31 18:13:22 -07:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Copy binary
|
|
|
|
copy:
|
|
|
|
src: "{{GAIACLI_BINARY}}"
|
2018-08-20 12:34:06 -07:00
|
|
|
dest: /usr/bin/gaiacli
|
2018-07-31 18:13:22 -07:00
|
|
|
mode: 0755
|
|
|
|
notify: restart gaiacli
|
|
|
|
|
|
|
|
- name: Copy service
|
|
|
|
template:
|
|
|
|
src: gaiacli.service.j2
|
|
|
|
dest: /etc/systemd/system/gaiacli.service
|
|
|
|
notify: systemctl
|
|
|
|
|