11 lines
204 B
YAML
Executable file
11 lines
204 B
YAML
Executable file
#!/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
|