mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 01:28:00 -04:00
Add macros to specify owner, group and mode of config files for installation.
Submitted by: Chris Rees (crees)
This commit is contained in:
parent
671dfdbf11
commit
cf78df8a0e
1 changed files with 14 additions and 0 deletions
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in a new issue