8 lines
202 B
Python
8 lines
202 B
Python
#!/usr/bin/python
|
|
|
|
import os
|
|
|
|
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
|
|
os.system("/bin/chmod u+s,go-r /usr/bin/gpg2")
|
|
os.system("/bin/chmod u+s,go-r /usr/bin/gpg-agent")
|