Answers for "multiple hosts in same role"

0

multiple hosts in same role

---
- connection: local
  gather_facts: false
  hosts: linux-srvr
  roles:  
  - linuxchk

- gather_facts: false
  hosts: jabber-srvr
  roles:  
  - jabber-msg
Posted by: Guest on October-26-2020
0

multiple hosts in same role

---
- hosts: groupa
  roles:
    - oracle

- hosts: groupb
  roles:
    - apache

- hosts: local
  connection: local
  tasks:
    - { debug: { msg: "Tasks to run locally" } }
Posted by: Guest on October-26-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language