update linux-bionic playbook and add a wsl playbook without desktop apps or libvirt tooling
parent
b8fd708b16
commit
3acfca482a
|
@ -17,3 +17,5 @@
|
||||||
name: k8s
|
name: k8s
|
||||||
- include_role:
|
- include_role:
|
||||||
name: linux-desktop
|
name: linux-desktop
|
||||||
|
- include_role:
|
||||||
|
name: libvirt
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
---
|
||||||
|
- name: wsl setup
|
||||||
|
hosts: all
|
||||||
|
become: yes
|
||||||
|
become_user: root
|
||||||
|
become_method: sudo
|
||||||
|
gather_facts: False
|
||||||
|
vars:
|
||||||
|
ansible_connection: local
|
||||||
|
ansible_python_interpreter: /usr/bin/python3
|
||||||
|
tasks:
|
||||||
|
- include_role:
|
||||||
|
name: dev-tools
|
||||||
|
- include_role:
|
||||||
|
name: docker
|
||||||
|
- include_role:
|
||||||
|
name: k8s
|
Reference in New Issue