9 lines
207 B
Python
9 lines
207 B
Python
#!/usr/bin/python
|
|
|
|
import os
|
|
|
|
PULSE_DIR="/var/lib/pulse"
|
|
|
|
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
|
|
os.system("/bin/chown pulse:pulse %s" % PULSE_DIR)
|
|
os.chmod(PULSE_DIR, 0700) |