From 4f1521406b8d992ea8a7684ca0603f821df97f85 Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Sat, 28 Jul 2018 23:29:36 +0000 Subject: [PATCH] Move nscd.conf from etc/ to usr.sbin/nscd/ Approved by: will (mentor) Differential Revision: https://reviews.freebsd.org/D16490 --- etc/Makefile | 4 ---- usr.sbin/nscd/Makefile | 1 + {etc => usr.sbin/nscd}/nscd.conf | 0 3 files changed, 1 insertion(+), 4 deletions(-) rename {etc => usr.sbin/nscd}/nscd.conf (100%) diff --git a/etc/Makefile b/etc/Makefile index 7d3c7940225..320bdc8abc6 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -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 diff --git a/usr.sbin/nscd/Makefile b/usr.sbin/nscd/Makefile index 96a2e8a8f45..0a3af09ac2a 100644 --- a/usr.sbin/nscd/Makefile +++ b/usr.sbin/nscd/Makefile @@ -1,5 +1,6 @@ # $FreeBSD$ +CONFS= nscd.conf PROG= nscd MAN= nscd.conf.5 nscd.8 diff --git a/etc/nscd.conf b/usr.sbin/nscd/nscd.conf similarity index 100% rename from etc/nscd.conf rename to usr.sbin/nscd/nscd.conf