From owner-svn-src-all@FreeBSD.ORG Thu Feb 5 20:01:14 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 298D02BC; Thu, 5 Feb 2015 20:01:14 +0000 (UTC) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 02D641F1; Thu, 5 Feb 2015 20:01:14 +0000 (UTC) Received: from ralph.baldwin.cx (pool-173-54-116-245.nwrknj.fios.verizon.net [173.54.116.245]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 1F78AB976; Thu, 5 Feb 2015 15:01:12 -0500 (EST) From: John Baldwin To: Garrett Cooper Subject: Re: svn commit: r278249 - head/etc/rc.d Date: Thu, 05 Feb 2015 15:01:10 -0500 Message-ID: <2975222.EGG18CXR9S@ralph.baldwin.cx> User-Agent: KMail/4.14.2 (FreeBSD/10.1-STABLE; KDE/4.14.2; amd64; ; ) In-Reply-To: <201502051138.t15BcUlj070663@svn.freebsd.org> References: <201502051138.t15BcUlj070663@svn.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Thu, 05 Feb 2015 15:01:12 -0500 (EST) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Feb 2015 20:01:14 -0000 On Thursday, February 05, 2015 11:38:30 AM Garrett Cooper wrote: > Author: ngie > Date: Thu Feb 5 11:38:29 2015 > New Revision: 278249 > URL: https://svnweb.freebsd.org/changeset/base/278249 > > Log: > Honor the following flags with the following rc.d scripts for services > that can be easily decoupled from the boot process without disrupting other > services > > - MK_APM && MK_ACPI: powerd > - MK_BOOTPARAMD: bootparams > - MK_FTP: ftpd > - MK_INETD: inetd > - MK_LEGACY_CONSOLE: moused, syscons > - MK_MAIL: othermta > - MK_NS_CACHING: nscd > - MK_NTP: ntpd (ntpdate is required by other services and can't be easily > conditionalized -- yet..) > - MK_ROUTED: routed > - MK_SENDMAIL: sendmail > - MK_TIMED: timed > - MK_VI: virecover > > MFC after: 3 weeks > Sponsored by: EMC / Isilon Storage Division > > Modified: head/etc/rc.d/Makefile > ============================================================================ > == --- head/etc/rc.d/Makefile Thu Feb 5 11:37:07 2015 (r278248) > +++ head/etc/rc.d/Makefile Thu Feb 5 11:38:29 2015 (r278249) > > +.if ${MK_INETD} != "no" > +_inetd= inetd > +.endif > + This no longer installs /etc/rc.d/inetd even if inetd is enabled. I think you meant to do 'FILES+= inetd' here instead. -- John Baldwin