virtualbox --without-qt

This commit is contained in:
Ertuğrul Erata
2015-08-12 13:11:59 +03:00
parent 74979ba42d
commit 8d5882c65b
21 changed files with 1019 additions and 0 deletions
@@ -0,0 +1,13 @@
#/usr/bin/python
# -*- coding: utf-8 -*-
import os
files = ("VBoxHeadless", "VBoxNetAdpCtl", "VBoxNetDHCP", "VBoxSDL", "VirtualBox")
vboxgroup = "vboxusers"
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)