blob: b4daf6a3c35c3ab7a71fffcb1566515308f6582b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/sbin/runscript
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/opensmtpd/files/smtpd.initd,v 1.4 2015/07/18 11:33:58 pinkbyte Exp $
command="smtpd"
start_stop_daemon_args="--pidfile=/run/smtpd.pid"
description="SMTP daemon from OpenBSD"
depend() {
need net
}
stop() {
ebegin "Stopping smtpd"
smtpctl stop
eend $?
}
|