1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Fix 'restart' action: rc.subr only expects to restart one service, not two.

PR:		217393
Reported by:	Martin Simmons
MFC after:	1 week
This commit is contained in:
Gregory Neil Shapiro 2017-06-12 01:26:36 +00:00
parent 5e3f43f2e0
commit 720046d61c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=319843

View File

@ -206,12 +206,14 @@ required_files=
if checkyesno sendmail_submit_enable; then
name="sendmail_submit"
rcvar="sendmail_submit_enable"
_rc_restart_done=false
run_rc_command "$1"
fi
if checkyesno sendmail_outbound_enable; then
name="sendmail_outbound"
rcvar="sendmail_outbound_enable"
_rc_restart_done=false
run_rc_command "$1"
fi
@ -219,4 +221,5 @@ name="sendmail_msp_queue"
rcvar="sendmail_msp_queue_enable"
pidfile="${sendmail_msp_queue_pidfile:-/var/spool/clientmqueue/sm-client.pid}"
required_files="/etc/mail/submit.cf"
_rc_restart_done=false
run_rc_command "$1"