vcmp timer task

This commit is contained in:
2025-01-26 16:29:08 +01:00
parent 817b52bc50
commit fa07d67a14
5 changed files with 44 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
- name: Copy vcmp service files
copy:
src: "{{ item }}"
dest: /etc/systemd/system/
mode: 0644
with_items:
- vcmp/vcmp.service
- vcmp/vcmp.timer
- name: Enable vcmp timer
systemd:
name: vcmp.timer
enabled: yes
state: started
daemon_reload: yes