Mercurial > noffle
view debian/init @ 320:5c6faf4e1dc9 noffle
[svn] * src/noffle.c: Give usage (rather than abort()) if option is unrecognised.
* src/content.c: Tighten up checks when accessing content vector.
author | bears |
---|---|
date | Fri, 21 Feb 2003 23:06:54 +0000 |
parents | 399ccb5e641b |
children | 08222dbe6eb0 |
line wrap: on
line source
#!/bin/sh # $Id: init 437 2003-02-16 08:47:33Z godisch $ PATH=/bin:/usr/bin:/sbin:/usr/sbin NOFFLE=/usr/bin/noffle if [ -x /usr/sbin/pppd ]; then NOFFLE_FETCHMODE="ppp" else NOFFLE_FETCHMODE="cron" fi [ -f /etc/default/noffle ] && . /etc/default/noffle [ -x "$NOFFLE" ] || exit 0 case "$1" in online|offline) echo "Switching offline news server to $1 mode: noffle." $NOFFLE --$1 ;; start) echo "Initializing offline news server: noffle." [ "$NOFFLE_FETCHMODE" = ppp ] && $NOFFLE --offline [ "$NOFFLE_FETCHMODE" = cron ] && $NOFFLE --online ;; stop) $0 offline ;; restart|force-reload) $0 start ;; *) echo "Usage: $0 {start|stop}" >&2 exit 1 ;; esac exit 0