virtualbox 5.1.0_rc1 versionbump and fix run

This commit is contained in:
poyraz76
2016-07-14 12:34:29 +03:00
parent d79d38dff0
commit 950db4d1fe
9 changed files with 99 additions and 23 deletions
@@ -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 ")