From owner-svn-src-head@freebsd.org Wed May 22 07:22:10 2019 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0951115A30C1; Wed, 22 May 2019 07:22:10 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9EA7B6FF5D; Wed, 22 May 2019 07:22:09 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6C5BA1A0FC; Wed, 22 May 2019 07:22:09 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4M7M9Sa057574; Wed, 22 May 2019 07:22:09 GMT (envelope-from manu@FreeBSD.org) Received: (from manu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4M7M8ue057572; Wed, 22 May 2019 07:22:08 GMT (envelope-from manu@FreeBSD.org) Message-Id: <201905220722.x4M7M8ue057572@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: manu set sender to manu@FreeBSD.org using -f From: Emmanuel Vadot Date: Wed, 22 May 2019 07:22:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r348100 - in head: etc libexec/rc X-SVN-Group: head X-SVN-Commit-Author: manu X-SVN-Commit-Paths: in head: etc libexec/rc X-SVN-Commit-Revision: 348100 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9EA7B6FF5D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.950,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 May 2019 07:22:10 -0000 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