virtualbox 5.1.0_rc1 versionbump and fix run
This commit is contained in:
@@ -10,4 +10,5 @@ def postInstall(fromVersion, fromRelease, toVersion, toRelease):
|
||||
for _file in files:
|
||||
f = "/usr/lib/virtualbox/%s" % _file
|
||||
os.system("/bin/chown :%s %s" % (vboxgroup, f))
|
||||
os.chmod(f, 04510)
|
||||
os.chmod(f, 04755)
|
||||
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
from comar.service import *
|
||||
import os
|
||||
|
||||
serviceType = "script"
|
||||
|
||||
@synchronized
|
||||
def start():
|
||||
os.system("/sbin/modprobe vboxguest")
|
||||
os.system("/sbin/modprobe vboxvideo")
|
||||
os.system("/sbin/modprobe vboxsf")
|
||||
os.system("/sbin/modprobe vboxdrv")
|
||||
os.system("/sbin/modprobe VBoxService -f ")
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user