You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-proxy/wwwoffle/files/wwwoffle-online.initd

30 lines
576 B

#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need wwwoffled
use 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 & > /dev/null 2>&1
eend $?
}
stop() {
ebegin "Stopping wwwoffled-online"
wwwoffle -offline -c /etc/wwwoffle/wwwoffle.conf
eend $?
}