blob: c042118e1b943ce71c7141722dbac2cc679d2522 (
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-2003 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.3 2003/02/14 23:04:55 vapier 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
}
|