16 lines
477 B
Python
16 lines
477 B
Python
#/usr/bin/python
|
||
# -*- coding: utf-8 -*-
|
||
|
||
import os
|
||
|
||
files = ("VBoxHeadless", "VBoxNetAdpCtl", "VBoxNetDHCP", "VBoxSDL", "VBoxNetNAT", "VirtualBoxVM")
|
||
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, 04755)
|
||
|
||
#VirtualBox 6.0.0 sürümde slindi VirtualBoxVM eklendi SetUID hatası verdiriyor
|