mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-18 17:55:09 +02:00
13 lines
447 B
YAML
13 lines
447 B
YAML
- name: "reload sys-hlth-csp service"
|
|
systemd:
|
|
name: sys-hlth-csp{{ SYS_SERVICE_SUFFIX }}
|
|
enabled: yes
|
|
daemon_reload: yes
|
|
async: "{{ ASYNC_TIME if ASYNC_ENABLED | bool else omit }}"
|
|
poll: "{{ ASYNC_POLL if ASYNC_ENABLED | bool else omit }}"
|
|
|
|
- name: rebuild checkcsp docker image
|
|
shell: checkcsp build
|
|
async: "{{ ASYNC_TIME if ASYNC_ENABLED | bool else omit }}"
|
|
poll: "{{ ASYNC_POLL if ASYNC_ENABLED | bool else omit }}"
|