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-dialup/capifwd/files/capifwd.init

23 lines
447 B

#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
opts="start stop"
depend() {
need capi
}
start() {
ebegin "Starting capi forwarding daemon"
start-stop-daemon --start --quiet --exec /usr/sbin/capifwd -- -p ${PORT}
eend $?
}
stop() {
ebegin "Stopping capi forwarding daemon"
start-stop-daemon --stop --quiet --retry 5 --exec /usr/sbin/capifwd
eend $?
}