8 lines
204 B
Python
8 lines
204 B
Python
#!/usr/bin/python
|
|
|
|
import os
|
|
|
|
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
|
|
os.system("/bin/chmod 722 /home/ftp/incoming")
|
|
os.system("/bin/chown ftp:ftp /home/ftp/incoming -R")
|