blob: 31b2702b01c9d04e7551d0d25723aeb0c4f04ab6 (
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
26
27
28
29
30
|
#!/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/qmail-mysql/files/1.03/qmail-control,v 1.1 2003/02/05 06:20:07 raker Exp $
opts="start stop restart reload"
start() {
ebegin "Starting qmail mta ..."
svc -u /var/qmail/supervise/*
eend $?
ebegin "Starting qmail mta logging ..."
svc -u /var/qmail/supervise/*/log
eend $?
}
stop() {
ebegin "Stopping qmail mta ..."
svc -d /var/qmail/supervise/*
eend $?
ebegin "Stopping qmail mta logging ..."
svc -d /var/qmail/supervise/*/log
eend $?
}
reload() {
ebegin "Reloading 'locals' and 'virtualdomains' control files."
svc -h /var/qmail/supervise/qmail-send
eend $?
}
|