BIND 10 master, updated. 461fc3cb6ebabc9f3fa5213749956467a14ebfd4 [master] applied proposed patch for #870 (private files for cmdctl are installed as readable files).
BIND 10 source code commits
bind10-changes at lists.isc.org
Tue Jun 7 16:28:19 UTC 2011
The branch, master has been updated
via 461fc3cb6ebabc9f3fa5213749956467a14ebfd4 (commit)
from 52cc6e6c2a7d61f93e17525b161b7c33ea4ade98 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 461fc3cb6ebabc9f3fa5213749956467a14ebfd4
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Tue Jun 7 09:27:01 2011 -0700
[master] applied proposed patch for #870 (private files for cmdctl are
installed as readable files).
-----------------------------------------------------------------------
Summary of changes:
src/bin/cmdctl/Makefile.am | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/bin/cmdctl/Makefile.am b/src/bin/cmdctl/Makefile.am
index 04cf5e2..33f8b76 100644
--- a/src/bin/cmdctl/Makefile.am
+++ b/src/bin/cmdctl/Makefile.am
@@ -40,12 +40,13 @@ b10-cmdctl: cmdctl.py
if INSTALL_CONFIGURATIONS
-# TODO: permissions handled later
+# Below we intentionally use ${INSTALL} -m 640 instead of $(INSTALL_DATA)
+# because these file will contain sensitive information.
install-data-local:
$(mkinstalldirs) $(DESTDIR)/@sysconfdir@/@PACKAGE@
for f in $(CMDCTL_CONFIGURATIONS) ; do \
if test ! -f $(DESTDIR)$(sysconfdir)/@PACKAGE@/$$f; then \
- $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(sysconfdir)/@PACKAGE@/ ; \
+ ${INSTALL} -m 640 $(srcdir)/$$f $(DESTDIR)$(sysconfdir)/@PACKAGE@/ ; \
fi ; \
done
More information about the bind10-changes
mailing list