Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Jun 2011 13:23:51 +0000 (UTC)
From:      Stefan Esser <se@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r223596 - head/share/mk
Message-ID:  <201106271323.p5RDNpZp099377@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201106271323.p5RDNpZp099377>