Use 'hosts: all' to allow running against remote machines
This commit is contained in:
parent
d767e2b60f
commit
e071690c34
4 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env ansible-playbook
|
||||
---
|
||||
- name: Setup CLI
|
||||
hosts: localhost
|
||||
hosts: all
|
||||
vars:
|
||||
gui: false
|
||||
tasks:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env ansible-playbook
|
||||
---
|
||||
- name: Setup GUI
|
||||
hosts: localhost
|
||||
hosts: all
|
||||
vars:
|
||||
gui: true
|
||||
tasks:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env ansible-playbook
|
||||
---
|
||||
- name: Setup GUI for user only
|
||||
hosts: localhost
|
||||
hosts: all
|
||||
vars:
|
||||
gui: true
|
||||
tasks:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env ansible-playbook
|
||||
---
|
||||
- name: Setup GUI for user only
|
||||
hosts: localhost
|
||||
hosts: all
|
||||
vars:
|
||||
gui: true
|
||||
tasks:
|
||||
|
|
Loading…
Reference in a new issue