mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-03 16:09:29 +00:00
- Introduce dynamic SYSTEMCTL_ALARM_COMPOSER_SUBSERVICES based on Mailu token and MODE_RESET - Prevent inclusion of sys-ctl-alm-email when disabled - Add system_service_is_template flag to avoid state-setting on template services - Update notifications to reload daemon for @ template units - Align msmtp execution conditions See: https://chatgpt.com/share/692c7a71-afcc-800f-8aba-6800a042ce3b
47 lines
1.4 KiB
YAML
47 lines
1.4 KiB
YAML
- name: Resolve systemctl template source
|
|
set_fact:
|
|
system_service_template_src: >-
|
|
{{ lookup(
|
|
'first_found',
|
|
{
|
|
'files': [
|
|
'templates/systemctl@.service.j2',
|
|
'templates/systemctl.service.j2'
|
|
],
|
|
'paths': [
|
|
system_service_role_dir,
|
|
role_path
|
|
]
|
|
},
|
|
errors='strict'
|
|
) }}
|
|
|
|
- name: Ensure a systemctl template was found
|
|
assert:
|
|
that: system_service_template_src | length > 0
|
|
fail_msg: >-
|
|
Could not resolve any systemctl template. Looked in:
|
|
{{ system_service_role_dir }}/templates/ and {{ role_path }}/templates/.
|
|
when: MODE_ASSERT | bool
|
|
|
|
- name: "setup systemctl '{{ system_service_id }}'"
|
|
template:
|
|
src: "{{ system_service_template_src }}"
|
|
dest: "{{ [ PATH_SYSTEM_SERVICE_DIR, system_service_name ] | path_join }}"
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|
|
notify: "{{ 'reload system daemon' if system_service_is_template | bool else 'refresh systemctl service' }}"
|
|
|
|
- name: refresh systemctl service when SYS_SERVICE_ALL_ENABLE
|
|
block:
|
|
- name: reload system daemon
|
|
command: /bin/true
|
|
notify: reload system daemon
|
|
- name: refresh systemctl service
|
|
command: /bin/true
|
|
notify: refresh systemctl service
|
|
when: not system_service_is_template | bool
|
|
when: system_service_force_flush | bool
|
|
|