ansible-ffrgb/roles/yanic/tasks/main.yml

32 lines
683 B
YAML
Raw Normal View History

---
- name: Create users
2018-01-17 14:13:24 +01:00
user: name=yanic
- name: Install yanic
shell: /usr/local/go/bin/go get -v -u github.com/ffrgb/yanic
args:
creates: /opt/go/bin/yanic
environment:
GOPATH: /opt/go
notify: Restart yanic
- name: Configure yanic
2017-11-09 21:44:38 +01:00
template: src=config.toml.j2 dest=/etc/yanic.conf
notify: Restart yanic
- name: Create directories
file: path={{ item }}/ state=directory owner=yanic
with_items:
- "{{ yanic_meshviewer_path }}"
- /var/lib/yanic
- name: Install system unit
2017-11-09 21:44:38 +01:00
copy: src=yanic.service dest=/lib/systemd/system/yanic.service
notify:
- Reload systemd
- Restart yanic
- name: Enable yanic
service: name=yanic enabled=yes