#!/sbin/runscript # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ # Default location if not specified in /etc/conf.d/ddclient PIDFILE=${PIDFILE:-/var/run/ddclient/ddclient.pid} depend() { need net } checkconfig() { if [[ ! -e /etc/ddclient/ddclient.conf ]] ; then eerror "/etc/ddclient/ddclient.conf is needed to run ddclient" eerror "There is a sample file in /etc/ddclient/" return 1 fi } start() { checkconfig || return 1 ebegin "Starting DDClient" start-stop-daemon \ --start \ --chuid ddclient \ --exec /usr/sbin/ddclient -- -pid="${PIDFILE}" eend $? } stop() { ebegin "Stopping DDClient" start-stop-daemon \ --stop \ --signal USR1 \ --pidfile "${PIDFILE}" eend $? }