#!/bin/sh # # start if [ "x$1" = "x" -o "x$1" = "xstart" ]; then echo -n 'Starting ez-ipupdate' /usr/local/bin/ez-ipupdate -c /usr/local/etc/ez-ipupdate.conf # stop elif [ "x$1" = "xstop" ]; then killall -QUIT ez-ipupdate fi