mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-26 21:45:20 +02:00
30 lines
833 B
YAML
30 lines
833 B
YAML
# roles/sys-systemctl/tasks/03_base.yml
|
|
- name: "find best matching source for service script"
|
|
set_fact:
|
|
systemctl_script_src: >-
|
|
{{ lookup('first_found',
|
|
{
|
|
'files': [
|
|
'templates/script.sh.j2',
|
|
'templates/script.py.j2',
|
|
'files/script.sh',
|
|
'files/script.py'
|
|
],
|
|
'paths': [ systemctl_role_dir ]
|
|
},
|
|
errors='strict'
|
|
) }}
|
|
when: systemctl_copy_files | bool
|
|
|
|
- name: "Load file logic for '{{ systemctl_id }}'"
|
|
include_tasks: 04_files.yml
|
|
when:
|
|
- systemctl_copy_files | bool
|
|
- systemctl_script_src
|
|
|
|
- name: "Load systemctl logic for '{{ systemctl_id }}'"
|
|
include_tasks: 05_service.yml
|
|
|
|
- name: "Load timer logic for '{{ systemctl_id }}'"
|
|
include_tasks: 06_timer.yml
|
|
when: systemctl_timer_enabled | bool |