diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2010-10-11 18:47:14 +0200 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2010-11-10 04:04:29 +0100 |
commit | fcdf1470c04b5ef19a7b9d28a48401f4d5c17293 (patch) | |
tree | 4d85ad080bc51a30070d8c37a62dc553fd8633f6 /contrib/polipo/Polipo | |
parent | 6b4db953c9c1416683da160bd2419dc0eb50e9bd (diff) | |
download | tor-fcdf1470c04b5ef19a7b9d28a48401f4d5c17293.tar.gz tor-fcdf1470c04b5ef19a7b9d28a48401f4d5c17293.zip |
Remove everything related to os x expert package
We decided to no longer ship expert packages for OS X because they're a
lot of trouble to keep maintained and confuse users. For those who want
a tor on OS X without Vidalia, macports is a fine option. Alternatively,
building from source is easy, too.
The polipo stuff that is still required for the Vidalia bundle build can
now be found in the torbrowser repository,
git://git.torproject.org/torbrowser.git.
Diffstat (limited to 'contrib/polipo/Polipo')
-rw-r--r-- | contrib/polipo/Polipo | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/contrib/polipo/Polipo b/contrib/polipo/Polipo deleted file mode 100644 index 14589c84db..0000000000 --- a/contrib/polipo/Polipo +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh - -## -# Polipo -## - -. /etc/rc.common - -StartService () -{ - if [ -f /Library/Polipo/bin/polipo ]; then - if pid=$(GetPID polipo); then - return 0 - else if [ "${POLIPO:=-NO-}" = "-YES-" ]; then - ConsoleMessage "Starting Polipo" - /Library/Polipo/bin/polipo -c /Library/Polipo/www/config - fi - fi - fi -} - -StopService () -{ - if pid=$(GetPID polipo); then - ConsoleMessage "Stopping Polipo" - kill -TERM "${pid}" - else - ConsoleMessage "Polipo not responding." -# Just for sanity (sometimes necessary.) - killall tor 2>/dev/null - fi -} - -RestartService () -{ - StopService - StartService -} - -RunService "$1" |