svn commit: r348100 - in head: etc libexec/rc

Emmanuel Vadot manu at FreeBSD.org
Wed May 22 07:22:10 UTC 2019


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


More information about the svn-src-head mailing list