12 lines
267 B
YAML
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
|