diff --git a/tasks/arch_virtualbox.yml b/tasks/arch_virtualbox.yml index 70ae077..c8f0436 100644 --- a/tasks/arch_virtualbox.yml +++ b/tasks/arch_virtualbox.yml @@ -6,6 +6,10 @@ with_items: - virtualbox +- name: Ensure group vboxuser exists + group: + name: vboxuser + state: present - name: Add me user to vboxuser group user: @@ -13,3 +17,13 @@ groups: vboxuser append: yes with_items: '{{ deploy_users }}' + +- name: Add the vboxnetadp module + modprobe: + name: vboxnetadp + state: present + +- name: Add the vboxnetflt module + modprobe: + name: vboxnetflt + state: present