svn commit: r231595 - stable/8/share/mk

Stefan Esser se at FreeBSD.org
Mon Feb 13 18:57:37 UTC 2012


Author: se
Date: Mon Feb 13 18:57:36 2012
New Revision: 231595
URL: http://svn.freebsd.org/changeset/base/231595

Log:
  MFC r223596:
  
  Add macros to specify owner, group and mode of config files for installation.

Modified:
  stable/8/share/mk/bsd.own.mk
Directory Properties:
  stable/8/share/mk/   (props changed)

Modified: stable/8/share/mk/bsd.own.mk
==============================================================================
--- stable/8/share/mk/bsd.own.mk	Mon Feb 13 18:56:34 2012	(r231594)
+++ stable/8/share/mk/bsd.own.mk	Mon Feb 13 18:57:36 2012	(r231595)
@@ -61,6 +61,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]
 #
@@ -142,6 +151,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-stable-8 mailing list