svn commit: r223596 - head/share/mk

Stefan Esser se at FreeBSD.org
Mon Jun 27 13:23:52 UTC 2011


Author: se
Date: Mon Jun 27 13:23:51 2011
New Revision: 223596
URL: http://svn.freebsd.org/changeset/base/223596

Log:
  Add macros to specify owner, group and mode of config files for installation.
  
  Submitted by:	Chris Rees (crees)

Modified:
  head/share/mk/bsd.own.mk

Modified: head/share/mk/bsd.own.mk
==============================================================================
--- head/share/mk/bsd.own.mk	Mon Jun 27 13:02:23 2011	(r223595)
+++ head/share/mk/bsd.own.mk	Mon Jun 27 13:23:51 2011	(r223596)
@@ -63,6 +63,15 @@
 # SHAREMODE	ASCII text file mode. [${NOBINMODE}]
 #
 #
+# CONFDIR	Base path for configuration files. [/etc]
+#
+# CONFOWN	Configuration file owner. [root]
+#
+# CONFGRP	Configuration file group. [wheel]
+#
+# CONFMODE	Configuration file mode. [644]
+#
+#
 # DOCDIR	Base path for system documentation (e.g. PSD, USD,
 #		handbook, FAQ etc.). [${SHAREDIR}/doc]
 #
@@ -145,6 +154,11 @@ SHAREOWN?=	root
 SHAREGRP?=	wheel
 SHAREMODE?=	${NOBINMODE}
 
+CONFDIR?=	/etc
+CONFOWN?=	root
+CONFGRP?=	wheel
+CONFMODE?=	644
+
 MANDIR?=	${SHAREDIR}/man/man
 MANOWN?=	${SHAREOWN}
 MANGRP?=	${SHAREGRP}


More information about the svn-src-head mailing list