ansible-ffrgb/roles/yanic/tasks/main.yml
2018-01-28 13:39:33 +01:00

32 lines
692 B
YAML

---
- name: Create users
user: name=yanic
- name: Install yanic
shell: /usr/local/go/bin/go get -v -u github.com/FreifunkBremen/yanic
args:
creates: /opt/go/bin/yanic
environment:
GOPATH: /opt/go
notify: Restart yanic
- name: Configure yanic
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
copy: src=yanic.service dest=/lib/systemd/system/yanic.service
notify:
- Reload systemd
- Restart yanic
- name: Enable yanic
service: name=yanic enabled=yes