All checks were successful
deploy host / Deploy (push) Successful in 14s
20 lines
335 B
YAML
20 lines
335 B
YAML
|
|
- name: Hello from ansible
|
|
hosts: all
|
|
|
|
tasks:
|
|
- name: Ping my hosts
|
|
become: true
|
|
ansible.builtin.ping:
|
|
|
|
- name: Print message
|
|
ansible.builtin.debug:
|
|
msg: Hello world
|
|
|
|
|
|
#- name: homesrv01 playbook
|
|
# hosts: all
|
|
# roles:
|
|
# - myInfra.dev.homesrv01.core
|
|
# - myInfra.ssh
|
|
# - myInfra.dev.homesrv01 |