From f46b0bad96759d65867c0ae203fd894c9e762a5c Mon Sep 17 00:00:00 2001 From: Hyperling Date: Thu, 30 Jul 2026 09:23:08 -0700 Subject: [PATCH] Change services to properly handle runit now that fact has been found. --- tasks/general/software/services.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/general/software/services.yml b/tasks/general/software/services.yml index 424fff4..db072b7 100644 --- a/tasks/general/software/services.yml +++ b/tasks/general/software/services.yml @@ -10,11 +10,11 @@ state: started enabled: yes when: ansible_virtualization_type != 'docker' + and ansible_service_mgr != "runit" register: cron_status until: cron_status.state == "started" retries: 3 delay: 3 - ignore_errors: yes # TBD: while debugging Devuan using runit. ## CUPS ## @@ -83,11 +83,11 @@ state: reloaded enabled: yes when: ansible_virtualization_type != 'docker' + and ansible_service_mgr != "runit" register: sshd_status until: sshd_status.state == "started" retries: 3 delay: 3 - ignore_errors: yes # TBD: while debugging Devuan using runit. ## JournalCTL ## @@ -119,11 +119,11 @@ state: started enabled: yes when: ansible_virtualization_type != 'docker' + and ansible_service_mgr != "runit" register: ntp_status until: ntp_status.state == "started" retries: 3 delay: 3 - ignore_errors: yes # TBD: while debugging Devuan using runit. ## Timezone ##