workstation/gui.yml

24 lines
536 B
YAML
Raw Normal View History

2019-10-21 08:09:44 +00:00
#!/usr/bin/env ansible-playbook
---
- name: Setup GUI
hosts: localhost
vars:
gui: true
2019-10-21 08:09:44 +00:00
tasks:
- include_role:
name: debian
when: ansible_distribution == 'Debian'
2019-10-21 08:09:44 +00:00
- include_role:
name: freebsd
when: ansible_distribution == 'FreeBSD'
2019-10-21 08:09:44 +00:00
- include_role:
name: netbsd
when: ansible_distribution == 'NetBSD'
- include_role:
name: ubuntu
when: ansible_distribution == 'Ubuntu'
- include_role:
name: home-cli
2019-10-21 08:09:44 +00:00
- include_role:
name: home-gui