Automated changes from linter ;P

This commit is contained in:
Mark Janssen 2024-07-11 20:47:52 +02:00
parent 44b73a216f
commit f7f04e7a41
Signed by: foobar
GPG key ID: D8674D8FC4F69BD2
65 changed files with 392 additions and 324 deletions

View file

@ -1,10 +1,10 @@
---
- name: Install dependencies
apt:
ansible.builtin.apt:
name: curl
- name: Install fetch script
template:
ansible.builtin.template:
src: bambulab-fetch.sh
dest: /opt/bambulab-fetch.sh
owner: root
@ -12,7 +12,7 @@
mode: 0755
- name: Install service
template:
ansible.builtin.template:
src: bambulab-fetch.service
dest: /etc/systemd/system/bambulab-fetch.service
owner: root
@ -21,7 +21,7 @@
notify: daemon reload
- name: Install timer
template:
ansible.builtin.template:
src: bambulab-fetch.timer
dest: /etc/systemd/system/bambulab-fetch.timer
owner: root
@ -30,7 +30,7 @@
notify: daemon reload
- name: Enable timer
systemd:
ansible.builtin.systemd:
name: bambulab-fetch
state: started
enabled: yes