slackbuilds_ponce/network/polipo/rc.polipo

31 lines
398 B
Text
Raw Normal View History

#!/bin/sh
# Force the pid file to a known location
PIDFILE="/var/run/polipo/polipo.pid"
start() {
echo "Starting polipo..."
polipo daemonise=true pidFile=$PIDFILE
}
stop() {
echo "Stopping polipo..."
kill `cat $PIDFILE`
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
sleep 1
start
;;
*)
echo "Usage: $0 (start|stop|restart)"
esac