#!/bin/sh # # /etc/rc.d/polipo: start/stop polipo daemon # SSD=/sbin/start-stop-daemon PROG=/usr/bin/polipo PID=/var/run/polipo.pid OPTS="" # Check for configuration files [ -f /etc/polipo/config ] || exit 1 case $1 in start) $SSD --start --make-pidfile --pidfile $PID \ --chuid polipo:polipo --exec $PROG \ --background -- $OPTS ;; stop) $SSD --stop --retry 10 --pidfile $PID --remove-pidfile ;; fast-reload) # write out all in-memory objects to disk and reload # the forbidden URLs file $SSD --stop --signal USR1 --pidfile $PID ;; reload) # write out all in-memory objects to disk, discard all # in-memory objects, and reload the forbidden URLs file $SSD --stop --signal USR2 --pidfile $PID ;; restart) $0 stop $0 start ;; status) $SSD --status --pidfile $PID case $? in 0) echo "$PROG is running with pid $(cat $PID)" ;; 1) echo "$PROG is not running but the pid file $PID exists" ;; 3) echo "$PROG is not running" ;; 4) echo "Unable to determine the program status" ;; esac ;; *) echo "Usage: $0 [start|stop|restart|status]" ;; esac # End of file