This repository has been archived by the owner on Sep 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vbox-guest: enable VBoxService for automounting host shares (#27)
Fixes #21
- Loading branch information
Sergiusz Urbaniak
authored
Sep 27, 2016
1 parent
ace8941
commit 2cd98d7
Showing
5 changed files
with
42 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
rkt -1 rkt -1 - /home/rkt /bin/bash rkt-admin,wheel - | ||
docker -1 docker -1 =tcuser /home/docker /bin/bash rkt,rkt-admin,wheel - | ||
rkt -1 rkt -1 - /home/rkt /bin/bash rkt-admin,wheel,vboxsf - | ||
docker -1 docker -1 =tcuser /home/docker /bin/bash rkt,rkt-admin,wheel,vboxsf - |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[Unit] | ||
Description=VirtualBox Guest Service | ||
ConditionVirtualization=oracle | ||
|
||
[Service] | ||
ExecStartPre=-/usr/sbin/modprobe vboxguest | ||
ExecStartPre=-/usr/sbin/modprobe vboxvideo | ||
ExecStartPre=-/usr/sbin/modprobe vboxsf | ||
ExecStart=/usr/sbin/VBoxService -f | ||
|
||
[Install] | ||
WantedBy=multi-user.target |