services: Add wifi-mqtt

This commit is contained in:
polyfloyd 2023-09-13 19:48:11 +02:00
parent 3716997783
commit 1a1335f92d
4 changed files with 55 additions and 0 deletions

View file

@ -48,3 +48,9 @@
name: mqtt-graphite
state: restarted
daemon_reload: true
- name: restart wifi-mqtt
systemd:
name: wifi-mqtt
state: restarted
daemon_reload: true

View file

@ -16,3 +16,6 @@
- tags: services_mqtt_graphite
import_tasks: mqtt_graphite.yaml
- tags: services_wifi_mqtt
import_tasks: wifi_mqtt.yaml

View file

@ -0,0 +1,31 @@
---
- name: Install dependencies
apt:
name:
- php-cli
- php-snmp
- make
- name: Clone source
git:
repo: https://github.com/bitlair/wifi-mqtt.git
version: main
dest: /var/lib/wifi-mqtt
accept_hostkey: yes
notify: restart wifi-mqtt
- name: Install service file
template:
src: wifi-mqtt.service
dest: /etc/systemd/system/wifi-mqtt.service
owner: root
group: root
mode: 0644
notify: restart wifi-mqtt
- name: Start wifi-mqtt
systemd:
name: wifi-mqtt
state: started
enabled: yes
daemon_reload: true

View file

@ -0,0 +1,15 @@
[Unit]
Description=Wifi events to MQTT
After=network.target
[Service]
Type=simple
Restart=on-failure
RestartSec=2s
ExecStart=/var/lib/wifi-mqtt/wifi-mqtt.py
DynamicUser=true
Environment="ARUBA_INSTANT_IP={{ wifi_mqtt_snmp_ip }}"
Environment="ARUBA_INSTANT_PASSWORD={{ wifi_mqtt_snmp_password }}"
[Install]
WantedBy=multi-user.target