services: Add wifi-mqtt
This commit is contained in:
parent
3716997783
commit
1a1335f92d
4 changed files with 55 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -16,3 +16,6 @@
|
|||
|
||||
- tags: services_mqtt_graphite
|
||||
import_tasks: mqtt_graphite.yaml
|
||||
|
||||
- tags: services_wifi_mqtt
|
||||
import_tasks: wifi_mqtt.yaml
|
||||
|
|
31
roles/services/tasks/wifi_mqtt.yaml
Normal file
31
roles/services/tasks/wifi_mqtt.yaml
Normal 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
|
15
roles/services/templates/wifi-mqtt.service
Normal file
15
roles/services/templates/wifi-mqtt.service
Normal 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
|
Loading…
Add table
Reference in a new issue