diff options
Diffstat (limited to 'roles/install_mesh-announce')
-rw-r--r-- | roles/install_mesh-announce/tasks/main.yml | 24 | ||||
-rw-r--r-- | roles/install_mesh-announce/templates/respondd.service.j2 | 12 |
2 files changed, 36 insertions, 0 deletions
diff --git a/roles/install_mesh-announce/tasks/main.yml b/roles/install_mesh-announce/tasks/main.yml new file mode 100644 index 0000000..ea81a45 --- /dev/null +++ b/roles/install_mesh-announce/tasks/main.yml @@ -0,0 +1,24 @@ +--- +- name: clone mesh-announce repo + git: + repo: https://github.com/FreifunkMYK/mesh-announce.git + dest: /opt/mesh-announce + +- name: install mesh-announce dependencies + pacman: + name: + - lsb-release + - ethtool + state: present + +- name: create respondd service + template: + src: respondd.service.j2 + dest: /etc/systemd/system/respondd.service + mode: 0644 + +- name: start and enable respondd service + systemd: + name: respondd + state: started + enabled: yes diff --git a/roles/install_mesh-announce/templates/respondd.service.j2 b/roles/install_mesh-announce/templates/respondd.service.j2 new file mode 100644 index 0000000..53970a7 --- /dev/null +++ b/roles/install_mesh-announce/templates/respondd.service.j2 @@ -0,0 +1,12 @@ +[Unit] +Description=Respondd +After=network.target + +[Service] +ExecStart=/opt/mesh-announce/respondd.py -d /opt/mesh-announce/providers {% for site in sites %}-i bat{{ site.name }} -i vpn{{ site.name }} -b bat{{ site.name }} {% endfor %} + +Restart=always +Environment=PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin + +[Install] +WantedBy=multi-user.target |