mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-27 14:05:17 +02:00
- Unified service templates into generic systemctl templates - Introduced reusable filter plugins for script path handling - Updated path variables and service/timer definitions - Migrated roles (backup, cleanup, repair, etc.) to use systemctl role - Added sys-daemon role for core systemd cleanup - Simplified timer handling via sys-timer role Note: This is a large refactor and some errors may still exist. Further testing and adjustments will be needed.
18 lines
517 B
YAML
18 lines
517 B
YAML
# run_once_sys_timer: deactivated
|
|
|
|
- name: create {{ sys_timer_file }}
|
|
template:
|
|
src: dummy.timer.j2
|
|
dest: "{{ [ PATH_SYSTEM_SERVICE_DIR, sys_timer_file ] | path_join }}"
|
|
register: dummy_timer
|
|
|
|
- name: "restart timer"
|
|
systemd:
|
|
daemon_reload: yes
|
|
name: "{{ sys_timer_file }}"
|
|
state: restarted
|
|
enabled: yes
|
|
when: dummy_timer.changed or ACTIVATE_ALL_TIMERS | bool
|
|
async: "{{ ASYNC_TIME if ASYNC_ENABLED | bool else omit }}"
|
|
poll: "{{ ASYNC_POLL if ASYNC_ENABLED | bool else omit }}"
|