diff options
author | rwatson <rwatson@FreeBSD.org> | 2006-02-12 13:01:39 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2006-02-12 13:01:39 +0000 |
commit | 92a26d2fa0b444abb65c382b5b0c875cc3f759cc (patch) | |
tree | 22e37d69ddd238f9bd14e0fc21a4a5f806542b52 | |
parent | ea926ddbd3773685cdd2763dfc8f46ad0e4b4cbc (diff) | |
download | FreeBSD-src-92a26d2fa0b444abb65c382b5b0c875cc3f759cc.zip FreeBSD-src-92a26d2fa0b444abb65c382b5b0c875cc3f759cc.tar.gz |
Install audit_control and audit_user, both of which are likely to be
modified by the administrator, as user-writable instead of read-only.
Obtained from: TrustedBSD Project
-rw-r--r-- | etc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/Makefile b/etc/Makefile index c71568b..343e5e3 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -121,7 +121,7 @@ distribution: cd ${.CURDIR}/pam.d; ${MAKE} install cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 0444 \ ${BSM_ETC_OPEN_FILES} ${BSM_ETC_DIR} - cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 0400 \ + cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 0600 \ ${BSM_ETC_RESTRICTED_FILES} ${BSM_ETC_DIR} cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 0500 \ ${BSM_ETC_EXEC_FILES} ${BSM_ETC_DIR} |