ansible/svc/status.yml
2026-03-21 17:42:45 +00:00

12 lines
267 B
YAML

- hosts: localhost
tasks:
- name: Check service status
ansible.builtin.systemd:
name: "{{ service }}"
state: started
register: service_status
- name: Print service status
ansible.builtin.debug:
var: service_status