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}
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to