14 lines
295 B
YAML
14 lines
295 B
YAML
- name: Semaphore connection test
|
|
hosts: all
|
|
gather_facts: false
|
|
become: true
|
|
|
|
tasks:
|
|
- name: Print the hostname
|
|
command: hostname
|
|
register: result
|
|
|
|
- name: Show result
|
|
debug:
|
|
msg: "Connected to {{ inventory_hostname }} (hostname: {{ result.stdout }})"
|