14 lines
228 B
YAML
14 lines
228 B
YAML
|
|
---
|
|
|
|
- name: Hello World
|
|
gather_facts: false
|
|
hosts: all
|
|
tasks:
|
|
|
|
- name: Display the config
|
|
debug:
|
|
msg: "The hostname is {{ ansible_net_hostname }} and the OS is {{ ansible_net_version }}"
|
|
|
|
|