blob: eb1e982bcc764be54f9e89a4ec864aaaf61db5bc (
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
|
#!/sbin/runscript
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-mail/vm-pop3d/files/vm-pop3d.rc3,v 1.2 2002/09/25 17:00:56 raker Exp $
SERVICE=vm-pop3d
opts="start stop restart"
start() {
ebegin "Starting $SERVICE..."
/usr/sbin/vm-pop3d $OPTS
}
stop() {
ebegin "Stopping $SERVICE..."
killall -15 /usr/sbin/vm-pop3d
}
restart() {
stop
start
}
|