Add playbooks for user only
This commit is contained in:
parent
844cbf8343
commit
af5f99d0ba
4 changed files with 20 additions and 0 deletions
9
user-cli.yml
Executable file
9
user-cli.yml
Executable file
|
@ -0,0 +1,9 @@
|
||||||
|
#!/usr/bin/env ansible-playbook
|
||||||
|
---
|
||||||
|
- name: Setup GUI for user only
|
||||||
|
hosts: localhost
|
||||||
|
vars:
|
||||||
|
gui: true
|
||||||
|
tasks:
|
||||||
|
- include_role:
|
||||||
|
name: home-cli
|
11
user-gui.yml
Executable file
11
user-gui.yml
Executable file
|
@ -0,0 +1,11 @@
|
||||||
|
#!/usr/bin/env ansible-playbook
|
||||||
|
---
|
||||||
|
- name: Setup GUI for user only
|
||||||
|
hosts: localhost
|
||||||
|
vars:
|
||||||
|
gui: true
|
||||||
|
tasks:
|
||||||
|
- include_role:
|
||||||
|
name: home-cli
|
||||||
|
- include_role:
|
||||||
|
name: home-gui
|
Loading…
Reference in a new issue