2008-05-21 06:01:24 -05:00
|
|
|
%system solaris
|
|
|
|
|
|
|
|
%postinstall << END
|
|
|
|
|
|
|
|
if [ -n "$$TMPDIR" ]; then
|
|
|
|
UNOPKGTMP="$$TMPDIR"
|
|
|
|
elif [ -n "$$TMP" ]; then
|
|
|
|
UNOPKGTMP="$$TMP"
|
|
|
|
elif [ -d "/tmp" ]; then
|
|
|
|
UNOPKGTMP="/tmp"
|
|
|
|
else
|
|
|
|
echo "No tmp directory found!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
#Create the command which creates a temporary directory
|
|
|
|
if [ -x "/usr/bin/mktemp" ]
|
|
|
|
then
|
|
|
|
INSTDIR=`/usr/bin/mktemp -d "$${UNOPKGTMP}/userinstall.XXXXXX"`
|
|
|
|
else
|
|
|
|
INSTDIR="$${UNOPKGTMP}/userinstall.$$$$"
|
|
|
|
mkdir "$$INSTDIR"
|
|
|
|
fi
|
|
|
|
|
CWS-TOOLING: integrate CWS so91s10u8_DEV300
2009-07-21 09:12:39 +0200 releng r274160 : #b6835838#
2009-07-21 09:10:03 +0200 releng r274158 : #b6836360#
2009-06-26 16:18:53 +0200 releng r273427 : #i10000# remove wrong elsif lines
2009-06-26 13:54:07 +0200 obo r273408 : #b6836339#,#b6835838#,#b6836573#,#b6836360#,#b6840384#,#b6836711#,#159633#,#159138#,#b6838895#,#b6836340#,#b6836712# initial changes
2009-07-28 10:05:10 -05:00
|
|
|
#
|
|
|
|
# Need to check diskless service install and make sure use the correct unpkg
|
|
|
|
#
|
|
|
|
DISKLESS_SRVC=`echo $$BASEDIR | /usr/bin/grep export/Solaris_[1-9][0-9]/usr_$${ARCH}.all`
|
|
|
|
if [ "$$DISKLESS_SRVC" ]; then
|
2010-07-13 11:57:19 -05:00
|
|
|
UNOPKG=/export/Solaris_11/usr_`uname -p`.allPRODUCTDIRECTORYNAME/program/unopkg
|
CWS-TOOLING: integrate CWS so91s10u8_DEV300
2009-07-21 09:12:39 +0200 releng r274160 : #b6835838#
2009-07-21 09:10:03 +0200 releng r274158 : #b6836360#
2009-06-26 16:18:53 +0200 releng r273427 : #i10000# remove wrong elsif lines
2009-06-26 13:54:07 +0200 obo r273408 : #b6836339#,#b6835838#,#b6836573#,#b6836360#,#b6840384#,#b6836711#,#159633#,#159138#,#b6838895#,#b6836340#,#b6836712# initial changes
2009-07-28 10:05:10 -05:00
|
|
|
POSTRUN=$$PKG_INSTALL_ROOT/usr_`uname -p`.all/usr/lib/postrun
|
|
|
|
CLIENT_BASEDIR=$$PKG_INSTALL_ROOT/usr_$${ARCH}.all
|
|
|
|
else
|
|
|
|
UNOPKG=$$BASEDIR/PRODUCTDIRECTORYNAME/program/unopkg
|
|
|
|
POSTRUN=$$PKG_INSTALL_ROOT/usr/lib/postrun
|
|
|
|
fi
|
2008-05-21 06:01:24 -05:00
|
|
|
# Use postrun command on Solaris where available (OpenSolaris)
|
CWS-TOOLING: integrate CWS so91s10u8_DEV300
2009-07-21 09:12:39 +0200 releng r274160 : #b6835838#
2009-07-21 09:10:03 +0200 releng r274158 : #b6836360#
2009-06-26 16:18:53 +0200 releng r273427 : #i10000# remove wrong elsif lines
2009-06-26 13:54:07 +0200 obo r273408 : #b6836339#,#b6835838#,#b6836573#,#b6836360#,#b6840384#,#b6836711#,#159633#,#159138#,#b6838895#,#b6836340#,#b6836712# initial changes
2009-07-28 10:05:10 -05:00
|
|
|
if [ -x $$POSTRUN ]; then
|
2008-05-21 06:01:24 -05:00
|
|
|
( echo "test -x \"$$CLIENT_BASEDIR/PRODUCTDIRECTORYNAME/program/unopkg\" || exit 0"
|
|
|
|
echo "umask 022"
|
2010-07-23 03:37:24 -05:00
|
|
|
echo "\"$$CLIENT_BASEDIR/PRODUCTDIRECTORYNAME/program/unopkg\" sync \"-env:BUNDLED_EXTENSIONS_USER=file:////$$CLIENT_BASEDIR/PRODUCTDIRECTORYNAME/share/prereg/bundled\" \"-env:UserInstallation=file:////$$INSTDIR\" '-env:UNO_JAVA_JFW_INSTALL_DATA=\$$OOO_BASE_DIR/share/config/javasettingsunopkginstall.xml' '-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1'"
|
2010-07-29 09:18:26 -05:00
|
|
|
echo "find \"$$CLIENT_BASEDIR/PRODUCTDIRECTORYNAME/share/prereg/bundled\" -type f -exec chmod 644 {} \\;"
|
CWS-TOOLING: integrate CWS so91s10u8_DEV300
2009-07-21 09:12:39 +0200 releng r274160 : #b6835838#
2009-07-21 09:10:03 +0200 releng r274158 : #b6836360#
2009-06-26 16:18:53 +0200 releng r273427 : #i10000# remove wrong elsif lines
2009-06-26 13:54:07 +0200 obo r273408 : #b6836339#,#b6835838#,#b6836573#,#b6836360#,#b6840384#,#b6836711#,#159633#,#159138#,#b6838895#,#b6836340#,#b6836712# initial changes
2009-07-28 10:05:10 -05:00
|
|
|
) | $$POSTRUN -b -c UNOPKG
|
2008-05-21 06:01:24 -05:00
|
|
|
if [ "$$?" != "0" ]; then
|
2010-07-13 11:57:19 -05:00
|
|
|
echo "\nERROR: Installation of UNO extensions"
|
CWS-TOOLING: integrate CWS so91s10u8_DEV300
2009-07-21 09:12:39 +0200 releng r274160 : #b6835838#
2009-07-21 09:10:03 +0200 releng r274158 : #b6836360#
2009-06-26 16:18:53 +0200 releng r273427 : #i10000# remove wrong elsif lines
2009-06-26 13:54:07 +0200 obo r273408 : #b6836339#,#b6835838#,#b6836573#,#b6836360#,#b6840384#,#b6836711#,#159633#,#159138#,#b6838895#,#b6836340#,#b6836712# initial changes
2009-07-28 10:05:10 -05:00
|
|
|
echo " through $$POSTRUN failed."
|
2008-05-21 06:01:24 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
# No postrun available, try running unopkg directly
|
2010-07-23 03:37:24 -05:00
|
|
|
"$$UNOPKG" sync "-env:BUNDLED_EXTENSIONS_USER=file:////////$$BASEDIR/PRODUCTDIRECTORYNAME/share/prereg/bundled" "-env:UserInstallation=file:////////$$INSTDIR" '-env:UNO_JAVA_JFW_INSTALL_DATA=$$OOO_BASE_DIR/share/config/javasettingsunopkginstall.xml' '-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1'
|
2010-07-29 09:18:26 -05:00
|
|
|
find "$$BASEDIR/PRODUCTDIRECTORYNAME/share/prereg/bundled" -type f -exec chmod 644 {} \;
|
2008-05-21 06:01:24 -05:00
|
|
|
if [ "$$?" != "0" ]; then
|
2010-07-13 11:57:19 -05:00
|
|
|
echo "\nERROR: Installation of UNO extensions failed."
|
2008-05-21 06:01:24 -05:00
|
|
|
test "$$BASEDIR" = "$$CLIENT_BASEDIR" || echo "ERROR: alternate root install requires SUNWpostrun package to be installed"
|
|
|
|
echo 'ERROR: Make sure the runtime requirements (operating system, patch level, architecture) are met.'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$$INSTDIR" ]; then
|
|
|
|
rm -rf "$$INSTDIR"
|
|
|
|
fi
|
|
|
|
|
CWS-TOOLING: integrate CWS so91s10u8_DEV300
2009-07-21 09:12:39 +0200 releng r274160 : #b6835838#
2009-07-21 09:10:03 +0200 releng r274158 : #b6836360#
2009-06-26 16:18:53 +0200 releng r273427 : #i10000# remove wrong elsif lines
2009-06-26 13:54:07 +0200 obo r273408 : #b6836339#,#b6835838#,#b6836573#,#b6836360#,#b6840384#,#b6836711#,#159633#,#159138#,#b6838895#,#b6836340#,#b6836712# initial changes
2009-07-28 10:05:10 -05:00
|
|
|
exit 0
|
2008-05-21 06:01:24 -05:00
|
|
|
END
|
|
|
|
|
2010-07-13 11:57:19 -05:00
|
|
|
%postremove << END
|
2010-07-23 11:25:10 -05:00
|
|
|
|
2008-05-21 06:01:24 -05:00
|
|
|
if [ -n "$$TMPDIR" ]; then
|
|
|
|
UNOPKGTMP="$$TMPDIR"
|
|
|
|
elif [ -n "$$TMP" ]; then
|
|
|
|
UNOPKGTMP="$$TMP"
|
|
|
|
elif [ -d "/tmp" ]; then
|
|
|
|
UNOPKGTMP="/tmp"
|
|
|
|
else
|
|
|
|
echo "No tmp directory found!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
#Create the command which creates a temporary directory
|
|
|
|
if [ -x "/usr/bin/mktemp" ]
|
|
|
|
then
|
|
|
|
INSTDIR=`/usr/bin/mktemp -d "$${UNOPKGTMP}/userinstall.XXXXXX"`
|
|
|
|
else
|
|
|
|
INSTDIR="$${UNOPKGTMP}/userinstall.$$$$"
|
|
|
|
mkdir "$$INSTDIR"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Use postrun command on Solaris where available (OpenSolaris)
|
|
|
|
if [ -x $$PKG_INSTALL_ROOT/usr/lib/postrun ]; then
|
|
|
|
( echo "test -x \"$$CLIENT_BASEDIR/PRODUCTDIRECTORYNAME/program/unopkg\" || exit 0"
|
|
|
|
echo "cd \"$$CLIENT_BASEDIR/PRODUCTDIRECTORYNAME/program\""
|
|
|
|
echo "umask 022"
|
2010-07-23 03:37:24 -05:00
|
|
|
echo "\"$$CLIENT_BASEDIR/PRODUCTDIRECTORYNAME/program/unopkg\" sync \"-env:BUNDLED_EXTENSIONS_USER=file:////$$CLIENT_BASEDIR/PRODUCTDIRECTORYNAME/share/prereg/bundled\" \"-env:UserInstallation=file:////$$INSTDIR\" '-env:UNO_JAVA_JFW_INSTALL_DATA=\$$OOO_BASE_DIR/share/config/javasettingsunopkginstall.xml' '-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1'"
|
2010-07-29 09:18:26 -05:00
|
|
|
echo "find \"$$CLIENT_BASEDIR/PRODUCTDIRECTORYNAME/share/prereg/bundled\" -type f -exec chmod 644 {} \\;"
|
2008-05-21 06:01:24 -05:00
|
|
|
echo "rm -rf \"$$INSTDIR\""
|
CWS-TOOLING: integrate CWS so91s10u8_DEV300
2009-07-21 09:12:39 +0200 releng r274160 : #b6835838#
2009-07-21 09:10:03 +0200 releng r274158 : #b6836360#
2009-06-26 16:18:53 +0200 releng r273427 : #i10000# remove wrong elsif lines
2009-06-26 13:54:07 +0200 obo r273408 : #b6836339#,#b6835838#,#b6836573#,#b6836360#,#b6840384#,#b6836711#,#159633#,#159138#,#b6838895#,#b6836340#,#b6836712# initial changes
2009-07-28 10:05:10 -05:00
|
|
|
) | $$PKG_INSTALL_ROOT/usr/lib/postrun -c UNOPKG
|
2008-05-21 06:01:24 -05:00
|
|
|
else
|
|
|
|
# No postrun available, try running unopkg directly
|
|
|
|
test -x $$BASEDIR/PRODUCTDIRECTORYNAME/program/unopkg || exit 0
|
2010-07-23 03:37:24 -05:00
|
|
|
"$$BASEDIR/PRODUCTDIRECTORYNAME/program/unopkg" sync "-env:BUNDLED_EXTENSIONS_USER=file:////////$$BASEDIR/PRODUCTDIRECTORYNAME/share/prereg/bundled" "-env:UserInstallation=file:////////$$INSTDIR" '-env:UNO_JAVA_JFW_INSTALL_DATA=$$OOO_BASE_DIR/share/config/javasettingsunopkginstall.xml' '-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1'
|
2010-07-29 09:18:26 -05:00
|
|
|
echo "find \"$$BASEDIR/PRODUCTDIRECTORYNAME/share/prereg/bundled\" -type f -exec chmod 644 {} \\;"
|
2008-05-21 06:01:24 -05:00
|
|
|
if [ "$$?" != "0" ]; then
|
2010-07-13 11:57:19 -05:00
|
|
|
echo "\nERROR: Removal of UNO extension failed."
|
2008-05-21 06:01:24 -05:00
|
|
|
test "$$BASEDIR" = "$$CLIENT_BASEDIR" || echo "ERROR: alternate root uninstall requires SUNWpostrun package to be installed"
|
|
|
|
echo 'ERROR: Make sure the runtime requirements (operating system, patch level, architecture) are met.'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$$INSTDIR" ]; then
|
|
|
|
rm -rf "$$INSTDIR"
|
|
|
|
fi
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
END
|
|
|
|
|
2007-09-06 04:03:18 -05:00
|
|
|
%system linux
|
|
|
|
|
2008-04-18 03:37:36 -05:00
|
|
|
%format rpm
|
|
|
|
|
2007-09-06 04:03:18 -05:00
|
|
|
%postinstall << END
|
|
|
|
#Find the temp dir
|
|
|
|
if [ -n "$$TMPDIR" ]; then
|
|
|
|
UNOPKGTMP="$$TMPDIR"
|
|
|
|
elif [ -n "$$TMP" ]; then
|
|
|
|
UNOPKGTMP="$$TMP"
|
|
|
|
elif [ -d "/tmp" ]; then
|
|
|
|
UNOPKGTMP="/tmp"
|
|
|
|
else
|
|
|
|
echo "No tmp directory found!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
#Create the command which creates a temporary directory
|
|
|
|
if [ -x "/bin/mktemp" ]
|
|
|
|
then
|
|
|
|
INSTDIR=`/bin/mktemp -d "$${UNOPKGTMP}/userinstall.XXXXXX"`
|
|
|
|
else
|
|
|
|
INSTDIR="$${UNOPKGTMP}/userinstall.$$$$"
|
|
|
|
mkdir "$$INSTDIR"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -x "$$RPM_INSTALL_PREFIX/PRODUCTDIRECTORYNAME/program/unopkg" ]; then
|
2010-07-23 03:37:24 -05:00
|
|
|
"$$RPM_INSTALL_PREFIX/PRODUCTDIRECTORYNAME/program/unopkg" sync "-env:BUNDLED_EXTENSIONS_USER=file:////$$RPM_INSTALL_PREFIX/PRODUCTDIRECTORYNAME/share/prereg/bundled" "-env:UserInstallation=file:////$$INSTDIR" '-env:UNO_JAVA_JFW_INSTALL_DATA=$$OOO_BASE_DIR/share/config/javasettingsunopkginstall.xml' '-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1'
|
2010-07-29 09:18:26 -05:00
|
|
|
find "$$RPM_INSTALL_PREFIX/PRODUCTDIRECTORYNAME/share/prereg/bundled" -type f -exec chmod 644 {} \;
|
2007-09-06 04:03:18 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$$INSTDIR" ]; then
|
|
|
|
rm -rf "$$INSTDIR"
|
|
|
|
fi
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
END
|
|
|
|
|
2010-07-13 11:57:19 -05:00
|
|
|
%postremove << END
|
2007-09-06 04:03:18 -05:00
|
|
|
#Find the temp dir
|
|
|
|
if [ -n "$$TMPDIR" ]; then
|
|
|
|
UNOPKGTMP="$$TMPDIR"
|
|
|
|
elif [ -n "$$TMP" ]; then
|
|
|
|
UNOPKGTMP="$$TMP"
|
|
|
|
elif [ -d "/tmp" ]; then
|
|
|
|
UNOPKGTMP="/tmp"
|
|
|
|
else
|
|
|
|
echo "No tmp directory found!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
#Create the command which creates a temporary directory
|
|
|
|
if [ -x "/bin/mktemp" ]
|
|
|
|
then
|
|
|
|
INSTDIR=`/bin/mktemp -d "$${UNOPKGTMP}/userinstall.XXXXXX"`
|
|
|
|
else
|
|
|
|
INSTDIR="$${UNOPKGTMP}/userinstall.$$$$"
|
|
|
|
mkdir "$$INSTDIR"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -x "$$RPM_INSTALL_PREFIX/PRODUCTDIRECTORYNAME/program/unopkg" ]; then
|
2010-07-23 03:37:24 -05:00
|
|
|
"$$RPM_INSTALL_PREFIX/PRODUCTDIRECTORYNAME/program/unopkg" sync "-env:BUNDLED_EXTENSIONS_USER=file:////$$RPM_INSTALL_PREFIX/PRODUCTDIRECTORYNAME/share/prereg/bundled" "-env:UserInstallation=file:////$$INSTDIR" '-env:UNO_JAVA_JFW_INSTALL_DATA=$$OOO_BASE_DIR/share/config/javasettingsunopkginstall.xml' '-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1'
|
2010-07-29 09:18:26 -05:00
|
|
|
find "$$RPM_INSTALL_PREFIX/PRODUCTDIRECTORYNAME/share/prereg/bundled" -type f -exec chmod 644 {} \;
|
2007-09-06 04:03:18 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$$INSTDIR" ]; then
|
|
|
|
rm -rf "$$INSTDIR"
|
|
|
|
fi
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
END
|
|
|
|
|
2008-04-18 03:37:36 -05:00
|
|
|
%format deb
|
|
|
|
|
|
|
|
%postinstall << END
|
|
|
|
#Find the temp dir
|
|
|
|
if [ -n "$$TMPDIR" ]
|
|
|
|
then
|
|
|
|
UNOPKGTMP="$$TMPDIR"
|
|
|
|
elif [ -n "$$TMP" ]
|
|
|
|
then
|
|
|
|
UNOPKGTMP="$$TMP"
|
|
|
|
elif [ -d "/tmp" ]
|
|
|
|
then
|
|
|
|
UNOPKGTMP="/tmp"
|
|
|
|
else
|
|
|
|
echo "No tmp directory found!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
#Create the command which creates a temporary directory
|
|
|
|
if [ -x "/bin/mktemp" ]
|
|
|
|
then
|
|
|
|
INSTDIR=`/bin/mktemp -d "$${UNOPKGTMP}/userinstall.XXXXXX"`
|
|
|
|
else
|
|
|
|
INSTDIR="$${UNOPKGTMP}/userinstall.$$$$"
|
|
|
|
mkdir "$$INSTDIR"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -x "PRODUCTDIRECTORYNAME/program/unopkg" ]; then
|
2010-07-23 03:37:24 -05:00
|
|
|
"PRODUCTDIRECTORYNAME/program/unopkg" sync "-env:BUNDLED_EXTENSIONS_USER=file://////PRODUCTDIRECTORYNAME/share/prereg/bundled" "-env:UserInstallation=file://////$$INSTDIR" '-env:UNO_JAVA_JFW_INSTALL_DATA=$$OOO_BASE_DIR/share/config/javasettingsunopkginstall.xml' '-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1'
|
2010-07-29 09:18:26 -05:00
|
|
|
find "PRODUCTDIRECTORYNAME/share/prereg/bundled" -type f -exec chmod 644 {} \;
|
2008-04-18 03:37:36 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$$INSTDIR" ]
|
|
|
|
then
|
|
|
|
rm -rf "$$INSTDIR"
|
|
|
|
fi
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
END
|
|
|
|
|
2010-07-13 11:57:19 -05:00
|
|
|
%postremove << END
|
|
|
|
# Find the temp dir
|
2008-04-18 03:37:36 -05:00
|
|
|
if [ -n "$$TMPDIR" ]
|
|
|
|
then
|
|
|
|
UNOPKGTMP="$$TMPDIR"
|
|
|
|
elif [ -n "$$TMP" ]
|
|
|
|
then
|
|
|
|
UNOPKGTMP="$$TMP"
|
|
|
|
elif [ -d "/tmp" ]
|
|
|
|
then
|
|
|
|
UNOPKGTMP="/tmp"
|
|
|
|
else
|
|
|
|
echo "No tmp directory found!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
#Create the command which creates a temporary directory
|
|
|
|
if [ -x "/bin/mktemp" ]
|
|
|
|
then
|
|
|
|
INSTDIR=`/bin/mktemp -d "$${UNOPKGTMP}/userinstall.XXXXXX"`
|
|
|
|
else
|
|
|
|
INSTDIR="$${UNOPKGTMP}/userinstall.$$$$"
|
|
|
|
mkdir "$$INSTDIR"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -x "PRODUCTDIRECTORYNAME/program/unopkg" ]
|
|
|
|
then
|
2010-07-23 03:37:24 -05:00
|
|
|
"PRODUCTDIRECTORYNAME/program/unopkg" sync "-env:BUNDLED_EXTENSIONS_USER=file://////PRODUCTDIRECTORYNAME/share/prereg/bundled" "-env:UserInstallation=file://////$$INSTDIR" '-env:UNO_JAVA_JFW_INSTALL_DATA=$$OOO_BASE_DIR/share/config/javasettingsunopkginstall.xml' '-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1'
|
2010-07-29 09:18:26 -05:00
|
|
|
find "PRODUCTDIRECTORYNAME/share/prereg/bundled" -type f -exec chmod 644 {} \;
|
2008-04-18 03:37:36 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$$INSTDIR" ]
|
|
|
|
then
|
|
|
|
rm -rf "$$INSTDIR"
|
|
|
|
fi
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
END
|
|
|
|
|
2007-09-06 04:03:18 -05:00
|
|
|
%system all
|