This repository has been archived on 2021-04-14. You can view files and clone it, but cannot push or open issues/pull-requests.
2018-09-26 18:09:37 -04:00
|
|
|
---
|
2019-05-30 09:53:43 -04:00
|
|
|
- name: linux desktop setup
|
2018-09-26 18:09:37 -04:00
|
|
|
hosts: all
|
|
|
|
become: yes
|
|
|
|
become_user: root
|
|
|
|
become_method: sudo
|
|
|
|
gather_facts: False
|
|
|
|
vars:
|
|
|
|
ansible_connection: local
|
|
|
|
ansible_python_interpreter: /usr/bin/python3
|
|
|
|
tasks:
|
2019-05-30 09:53:43 -04:00
|
|
|
- include_role:
|
|
|
|
name: dev-tools
|
|
|
|
- include_role:
|
|
|
|
name: docker
|
|
|
|
- include_role:
|
|
|
|
name: k8s
|
|
|
|
- include_role:
|
|
|
|
name: linux-desktop
|