diff options
author | Alin Năstac <mrness@gentoo.org> | 2004-12-05 16:00:01 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2004-12-05 16:00:01 +0000 |
commit | 35f43d7b5bceed407dbe8a3b3f789066aabff43a (patch) | |
tree | d05eb7642453cbb119dbc409935ba35d3ec04d0c /net-dialup/linesrv/files/linesrv.rc6 | |
parent | HOMEPAGE updated. (Manifest recommit) (diff) | |
download | gentoo-2-35f43d7b5bceed407dbe8a3b3f789066aabff43a.tar.gz gentoo-2-35f43d7b5bceed407dbe8a3b3f789066aabff43a.tar.bz2 gentoo-2-35f43d7b5bceed407dbe8a3b3f789066aabff43a.zip |
Moved from net-misc/linesrv to net-dialup/linesrv.
Diffstat (limited to 'net-dialup/linesrv/files/linesrv.rc6')
-rwxr-xr-x | net-dialup/linesrv/files/linesrv.rc6 | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net-dialup/linesrv/files/linesrv.rc6 b/net-dialup/linesrv/files/linesrv.rc6 new file mode 100755 index 000000000000..a1eefab1c19d --- /dev/null +++ b/net-dialup/linesrv/files/linesrv.rc6 @@ -0,0 +1,30 @@ +#!/sbin/runscript +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/linesrv/files/linesrv.rc6,v 1.1 2004/12/05 15:56:10 mrness Exp $ + +depend() { + need net logger + use mysql dns +} + +checkconfig() { + if [ ! -e /etc/linesrv.conf ] ; then + eerror "You need an /etc/linesrv.conf file first" + eerror "There is a sample in /usr/share/doc/linesrv" + return 1 + fi +} + +start() { + checkconfig || return 1 + ebegin "Starting linesrv" + start-stop-daemon --start --quiet --exec /usr/sbin/linesrv -- ${LINESRV_OPTS} + eend $? +} + +stop() { + ebegin "Stopping linesrv" + start-stop-daemon --stop --signal 3 --quiet --pidfile /var/run/linesrv.pid + eend $? +} |