12 lines
356 B
YAML
12 lines
356 B
YAML
---
|
|
- name: Local Loopback Deployment Operations
|
|
hosts: minipc
|
|
gather_facts: false
|
|
tasks:
|
|
- name: Audit Target Operational State
|
|
ansible.builtin.command: uname -a
|
|
register: host_kernel
|
|
|
|
- name: Log Target Status
|
|
ansible.builtin.debug:
|
|
msg: "Deployment target operating system identified as: {{ host_kernel.stdout }}" |