Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 May 2019 07:22:08 +0000 (UTC)
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r348100 - in head: etc libexec/rc
Message-ID:  <201905220722.x4M7M8ue057572@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: manu
Date: Wed May 22 07:22:08 2019
New Revision: 348100
URL: https://svnweb.freebsd.org/changeset/base/348100

Log:
  pkgbase: Move rc.sendmail to libexec/rc
  
  Reviewed by:	bapt

Modified:
  head/etc/Makefile
  head/libexec/rc/Makefile

Modified: head/etc/Makefile
==============================================================================
--- head/etc/Makefile	Wed May 22 07:21:39 2019	(r348099)
+++ head/etc/Makefile	Wed May 22 07:22:08 2019	(r348100)
@@ -20,10 +20,6 @@ BIN1=	\
 
 # NB: keep these sorted by MK_* knobs
 
-.if ${MK_SENDMAIL} != "no"
-BIN1+=	rc.sendmail
-.endif
-
 .if ${MK_SENDMAIL} == "no"
 ETCMAIL=mailer.conf aliases
 .else

Modified: head/libexec/rc/Makefile
==============================================================================
--- head/libexec/rc/Makefile	Wed May 22 07:21:39 2019	(r348099)
+++ head/libexec/rc/Makefile	Wed May 22 07:22:08 2019	(r348100)
@@ -8,6 +8,9 @@ CONFETC=	network.subr rc rc.initdiskless rc.subr rc.sh
 .if ${MK_IPFW} != "no"
 CONFETC+=	rc.firewall
 .endif
+.if ${MK_SENDMAIL} != "no"
+CONFETC+=	rc.sendmail
+.endif
 CONFETCMODE=	644
 CONFETCEXEC=	netstart pccard_ether rc.resume rc.suspend
 CONFETCEXECDIR=	/etc



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905220722.x4M7M8ue057572>