summaryrefslogtreecommitdiff
blob: 725c3842f782dec8a5b182abba02fa3521530a0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-proxy/wwwoffle/files/wwwoffle-2.8c-init-online,v 1.1 2004/09/19 07:18:43 dragonheart Exp $

depend() {
	need wwwoffled dns

	if [ -n ${IFACE} ];
	then
		need net.${IFACE}
	else
		ewarn "No IFACE is defined in /etc/conf.d/wwwoffle-online"
		need net
	fi
}

start() {
	ebegin "Starting wwwoffled-online"
	wwwoffle -online -c /etc/wwwoffle/wwwoffle.conf
	wwwoffle -fetch -c /etc/wwwoffle/wwwoffle.conf
	eend $?
}

stop() {
	ebegin "Stopping wwwoffled-online"
	wwwoffle -offline -c /etc/wwwoffle/wwwoffle.conf
	eend $?
}