mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-01-08 14:23:01 +07:00
9 lines
172 B
YAML
9 lines
172 B
YAML
|
- name: Simple Play
|
||
|
hosts: localhost
|
||
|
connection: local
|
||
|
tasks:
|
||
|
- name: Ping me
|
||
|
ping:
|
||
|
- name: print os
|
||
|
debug:
|
||
|
msg: "{{ ansible_os_family }}"
|