summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2012-06-15 21:29:05 +0000
committerArthur de Jong <arthur@arthurdejong.org>2012-06-15 21:29:05 +0000
commit978e3fe703192f744e81c9bcf78f88e2004933a0 (patch)
tree1c6d736024922b4f7a7ef4b46ebaa307b6ba62c6 /Makefile.am
parentf737ce4a3ec06669249dae7c751fbdd044bb6753 (diff)
install the default configuration file with reduced permissions (further protection for CVE-2009-1073)
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1704 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 42c35b7..ce55eb9 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -53,7 +53,7 @@ install-nslcd_conf:
echo "$(DESTDIR)$(NSLCD_CONF_PATH) already exists, install will not overwrite"; \
else \
$(mkinstalldirs) `dirname $(DESTDIR)$(NSLCD_CONF_PATH)`; \
- $(INSTALL_DATA) $(srcdir)/nslcd.conf $(DESTDIR)$(NSLCD_CONF_PATH); \
+ $(INSTALL) -m 600 $(srcdir)/nslcd.conf $(DESTDIR)$(NSLCD_CONF_PATH); \
fi
uninstall-nslcd_conf:
-rm -f $(DESTDIR)$(NSLCD_CONF_PATH)