| 1234567891011121314151617181920212223242526272829 | #!/bin/sh# TorPreFlight is invoked before the install begins# Figure out where Tor is installedif [ -f /Library/StartupItems/Tor/Tor.loc ]; then	TORPATH=`cat /Library/StartupItems/Tor/Tor.loc`else	TORPATH="/Library/Tor/"fiif [ -f /Library/StartupItems/Privoxy/Privoxy.loc ]; then	PRIVOXYPATH=`cat /Library/StartupItems/Privoxy/Privoxy.loc`else	PRIVOXYPATH="/Library/Privoxy/"fi# Backup all of Tor, just in caseif [ -d $TORPATH ]; then	tar zcf /tmp/TorSavedMe.tar.gz $TORPATH/var/lib/tor $TORPATH/torrc $PRIVOXYPATH/config $PRIVOXYPATH/user.actionfi# Remove Tor and everything to do with itif [ -f $TORPATH/uninstall_tor_bundle.sh ]; then	$TORPATH/uninstall_tor_bundle.shelse	$PACKAGE_PATH/Contents/Resources/uninstall_tor_bundle.shfi# This is complete, we have a fresh system on which to install Tor
 |