blob: 74ccf21ded8619829880249014c99381b23a3c75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/utelnetd/files/utelnetd.initd,v 1.2 2004/07/15 00:15:20 agriffis Exp $
start() {
ebegin "Starting utelnetd"
start-stop-daemon -b --start --quiet --exec /usr/sbin/utelnetd
eend $?
}
stop() {
ebegin "Stopping utelnetd"
start-stop-daemon --stop --quiet --exec /usr/sbin/utelnetd
eend $?
}
|