From cea9c033f2db7b768bc48fe5c3e8d140d23da4e2 Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Sat, 11 Aug 2018 13:25:39 +0000 Subject: [PATCH] Move ddb.conf to sbin/ddb/ and switch to CONFS. This helps pkgbase as this config file will now be tagged as a config file. Approved by: allanjude (mentor) Differential Revision: https://reviews.freebsd.org/D16675 --- etc/Makefile | 1 - sbin/ddb/Makefile | 1 + {etc => sbin/ddb}/ddb.conf | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename {etc => sbin/ddb}/ddb.conf (100%) diff --git a/etc/Makefile b/etc/Makefile index 53ff1305a70e..dad095e43bee 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -15,7 +15,6 @@ SUBDIR+=sendmail BIN1= crontab \ devd.conf \ devfs.conf \ - ddb.conf \ dhclient.conf \ disktab \ fbtab \ diff --git a/sbin/ddb/Makefile b/sbin/ddb/Makefile index 44d002d6c229..f1bf75e41b36 100644 --- a/sbin/ddb/Makefile +++ b/sbin/ddb/Makefile @@ -1,5 +1,6 @@ # $FreeBSD$ +CONFS= ddb.conf PACKAGE=runtime PROG= ddb SRCS= ddb.c ddb_capture.c ddb_script.c diff --git a/etc/ddb.conf b/sbin/ddb/ddb.conf similarity index 100% rename from etc/ddb.conf rename to sbin/ddb/ddb.conf