Fix typo in ansible_service_mgr.

This commit is contained in:
2026-07-30 09:41:41 -07:00
parent a85cbf277f
commit faddea7492
+2 -2
View File
@@ -10,12 +10,12 @@
- name: General | Tests | Services | Set Facts | SystemD
set_fact:
services_command: "systemctl list-unit-files"
when: ansisible_service_mgr == "systemd"
when: ansible_service_mgr == "systemd"
- name: General | Tests | Services | Set Facts | runit
set_fact:
services_command: 'for s in /var/service/*; do sv status "$s"; done'
when: ansisible_service_mgr == "runit"
when: ansible_service_mgr == "runit"
- name: General | Tests | Services | Create Main Report
shell: "{{ item }}"