Linter + Dashboard fixes

This commit is contained in:
Mark Janssen 2024-07-31 20:33:54 +02:00
parent e1bf3e1765
commit abc64144a8
Signed by: foobar
GPG key ID: D8674D8FC4F69BD2
44 changed files with 265 additions and 379 deletions

View file

@ -7,25 +7,25 @@
- make
- name: Clone source
git:
ansible.builtin.git:
repo: https://github.com/bitlair/wifi-mqtt.git
version: main
dest: /var/lib/wifi-mqtt
accept_hostkey: yes
notify: restart wifi-mqtt
notify: Restart wifi-mqtt
- name: Install service file
template:
ansible.builtin.template:
src: wifi-mqtt.service
dest: /etc/systemd/system/wifi-mqtt.service
owner: root
group: root
mode: 0644
notify: restart wifi-mqtt
mode: "0644"
notify: Restart wifi-mqtt
- name: Start wifi-mqtt
systemd:
ansible.builtin.systemd:
name: wifi-mqtt
state: started
enabled: yes
enabled: true
daemon_reload: true