Add playbooks for user only

This commit is contained in:
Anthony Rose 2019-11-28 12:45:46 +00:00
parent 844cbf8343
commit af5f99d0ba
4 changed files with 20 additions and 0 deletions

9
user-cli.yml Executable file
View 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
View 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