From owner-svn-src-head@freebsd.org Sat Jul 28 23:29:37 2018 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 A8FFC106168E; Sat, 28 Jul 2018 23:29:37 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B54B856C9; Sat, 28 Jul 2018 23:29:37 +0000 (UTC) (envelope-from brd@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 2698D5AF3; Sat, 28 Jul 2018 23:29:37 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6SNTa1f024577; Sat, 28 Jul 2018 23:29:36 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6SNTaIw024574; Sat, 28 Jul 2018 23:29:36 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201807282329.w6SNTaIw024574@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Sat, 28 Jul 2018 23:29:36 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r336850 - in head: etc usr.sbin/nscd X-SVN-Group: head X-SVN-Commit-Author: brd X-SVN-Commit-Paths: in head: etc usr.sbin/nscd X-SVN-Commit-Revision: 336850 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.27 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: Sat, 28 Jul 2018 23:29:37 -0000 Author: brd Date: Sat Jul 28 23:29:36 2018 New Revision: 336850 URL: https://svnweb.freebsd.org/changeset/base/336850 Log: Move nscd.conf from etc/ to usr.sbin/nscd/ Approved by: will (mentor) Differential Revision: https://reviews.freebsd.org/D16490 Added: head/usr.sbin/nscd/nscd.conf - copied unchanged from r336849, head/etc/nscd.conf Deleted: head/etc/nscd.conf Modified: head/etc/Makefile head/usr.sbin/nscd/Makefile Modified: head/etc/Makefile ============================================================================== --- head/etc/Makefile Sat Jul 28 23:02:10 2018 (r336849) +++ head/etc/Makefile Sat Jul 28 23:29:36 2018 (r336850) @@ -115,10 +115,6 @@ SSH= ${SRCTOP}/crypto/openssh/ssh_config \ SSL= ${SRCTOP}/crypto/openssl/apps/openssl.cnf .endif -.if ${MK_NS_CACHING} != "no" -BIN1+= nscd.conf -.endif - .if ${MK_PORTSNAP} != "no" BIN1+= portsnap.conf .endif Modified: head/usr.sbin/nscd/Makefile ============================================================================== --- head/usr.sbin/nscd/Makefile Sat Jul 28 23:02:10 2018 (r336849) +++ head/usr.sbin/nscd/Makefile Sat Jul 28 23:29:36 2018 (r336850) @@ -1,5 +1,6 @@ # $FreeBSD$ +CONFS= nscd.conf PROG= nscd MAN= nscd.conf.5 nscd.8 Copied: head/usr.sbin/nscd/nscd.conf (from r336849, head/etc/nscd.conf) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/usr.sbin/nscd/nscd.conf Sat Jul 28 23:29:36 2018 (r336850, copy of r336849, head/etc/nscd.conf) @@ -0,0 +1,12 @@ +# +# Default caching daemon configuration file +# $FreeBSD$ +# + +enable-cache passwd yes +enable-cache group yes +enable-cache hosts yes +enable-cache services yes +enable-cache protocols yes +enable-cache rpc yes +enable-cache networks yes