[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r6912: Be better at finding the Tor install path, backup all of Tor (tor/trunk/contrib/osx)
- To: or-cvs@xxxxxxxxxxxxx
- Subject: [or-cvs] r6912: Be better at finding the Tor install path, backup all of Tor (tor/trunk/contrib/osx)
- From: phobos@xxxxxxxx
- Date: Wed, 26 Jul 2006 20:19:36 -0400 (EDT)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Wed, 26 Jul 2006 20:19:45 -0400
- Reply-to: or-talk@xxxxxxxxxxxxx
- Sender: owner-or-cvs@xxxxxxxxxxxxx
Author: phobos
Date: 2006-07-26 20:19:36 -0400 (Wed, 26 Jul 2006)
New Revision: 6912
Modified:
tor/trunk/contrib/osx/TorPreFlight
Log:
Be better at finding the Tor install path, backup all of Tor just in
case, then blow Tor away
Modified: tor/trunk/contrib/osx/TorPreFlight
===================================================================
--- tor/trunk/contrib/osx/TorPreFlight 2006-07-26 23:52:59 UTC (rev 6911)
+++ tor/trunk/contrib/osx/TorPreFlight 2006-07-27 00:19:36 UTC (rev 6912)
@@ -1,13 +1,25 @@
#!/bin/sh
# TorPreFlight is invoked before the install begins
-# Find the server keys, if they exist and save them, just in case
-if [ -d /Library/Tor/var/lib/tor/keys ]; then
- tar zcf ~/`date "+%Y-%m-%d"`-Tor-ServerKeys.backup.tar.gz /Library/Tor/var/lib/tor/keys
+# Figure out where Tor is installed
+if [ -f /Library/StartupItems/Tor/Tor.loc ]; then
+ TORPATH=`cat /Library/StartupItems/Tor/Tor.loc`
+else if [ -f /System/Library/LaunchDaemons/net.freehaven.tor ]; then
+ TORPATH=/`grep -A1 "<key>Program</key>" /System/Library/LaunchDaemons/net.freehaven.tor.plist | grep string | cut -d"/" -f2,3`
+else
+ TORPATH="/Library/Tor/"
fi
+# Backup all of Tor, just in case
+if [ -d $TORPATH ]; then
+ tar zcf ~/`date "+%Y-%m-%d"`-Tor.backup.tar.gz $TORPATH
+fi
+
# Remove Tor and everything to do with it
-if [ -f /Library/Tor/uninstall_tor_bundle.sh ]; then
- /Library/Tor/uninstall_tor_bundle.sh
+if [ -f $TORPATH/uninstall_tor_bundle.sh ]; then
+ $TORPATH/uninstall_tor_bundle.sh
+else
+ $PACKAGE_PATH/Contents/Resources/uninstall_tor_bundle.sh
fi
+# This is complete, we have a fresh system on which to install Tor