home *** CD-ROM | disk | FTP | other *** search
- #! /bin/sh
- echo Exec PrepPatch.post_install
- if [ -f $2/PrepPatch.app/pspatch ]; then
- echo SetUID for $2/PrepPatch.app/pspatch
- /etc/chown root $2/PrepPatch.app/pspatch
- if [ ! $? -eq 0 ]; then
- echo chown root not successfull
- exit 1
- fi
- chmod u+s $2/PrepPatch.app/pspatch
- if [ ! $? -eq 0 ]; then
- echo chmod not successfull
- exit 1
- fi
- fi
- echo PrepPatch.post_install ... OK.
- exit 0
-
-