Skip to content
Snippets Groups Projects
Verified Commit c8a187cc authored by Florian Pritz's avatar Florian Pritz
Browse files

archboxes: Fix module loading not supporting multiple modules


Signed-off-by: default avatarFlorian Pritz <bluewind@xinu.at>
parent c4754dfe
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,8 @@
git: repo='https://github.com/archlinux/arch-boxes.git' dest="{{ archboxes_git_dir }}" force=yes
- name: load virtualbox kernel modules
modprobe: name=vboxdrv,vboxnetadp,vboxnetflt state=present
modprobe: name="{{item}}" state=present
with_items: ['vboxdrv', 'vboxnetadp', 'vboxnetflt']
- name: add modules-load config for virtualbox
copy: src=virtualbox.conf dest=/etc/modules-load.d/virtualbox.conf owner=root group=root mode=0644
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment