#!/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