summaryrefslogtreecommitdiffstats
path: root/network/polipo/rc.polipo
blob: 419e9b0fad94e9380a9fb795d9ce1891b45b06e1 (plain)
#!/bin/sh

# Force the pid file to a known location
PIDFILE="/var/run/polipo/polipo.pid"

start() {
  echo "Starting polipo..."
  mkdir -p $(dirname $PIDFILE)
  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