mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-26 21:45:20 +02:00
- Unified variable naming: system_service_id → systemctl_id - Added automatic removal of trailing '@' for role directory resolution - Improved first_found search: prefer target role, fallback to sys-systemctl defaults - Split template resolution logic to avoid undefined variable errors - Added assertion in sys-timer to forbid '@' in systemctl_id - Corrected default systemctl.service.j2 template description - Cleaned up path handling and script directory generation Context: conversation about fixing template resolution and @ handling https://chatgpt.com/share/68a39994-1bb0-800f-a219-109e643c3efb
13 lines
410 B
YAML
13 lines
410 B
YAML
- name: Fail if systemctl_id contains "@"
|
|
assert:
|
|
that:
|
|
- "'@' not in systemctl_id"
|
|
fail_msg: "Invalid systemctl_id '{{ systemctl_id }}' → must not contain '@'."
|
|
|
|
- name: "Make '{{ systemctl_id }}' available for sys-timer"
|
|
set_fact:
|
|
systemctl_timer_service: "{{ systemctl_id }}"
|
|
|
|
- name: "include role for sys-timer for {{ systemctl_timer_service }}"
|
|
include_role:
|
|
name: sys-timer |