From: Florent Bruneau Date: Wed, 15 Oct 2008 06:28:01 +0000 (+0200) Subject: No need for the +x mode on configuration files. X-Git-Url: http://git.madism.org/?p=apps%2Fpfixtools.git;a=commitdiff_plain;h=b0194db8ea91d49b9e50319f6e20b8f580e338ed;hp=5acb061e01376dd03a70feb8be5dd2621011cc98 No need for the +x mode on configuration files. Signed-off-by: Florent Bruneau --- diff --git a/Makefile b/Makefile index 88e599d..b2290cb 100644 --- a/Makefile +++ b/Makefile @@ -74,8 +74,8 @@ install-postlicyd-tools: install tools/rbldns2postlicyd $(DESTDIR)$(prefix)/bin/rbldns2postlicyd install-postlicyd-conf: - install example/postlicyd.conf $(DESTDIR)/etc/pfixtools/postlicyd.example.conf - install example/postlicyd-rsyncrbl.conf $(DESTDIR)/etc/pfixtools/postlicyd-rsyncrbl.example.conf + install -m 640 example/postlicyd.conf $(DESTDIR)/etc/pfixtools/postlicyd.example.conf + install -m 640 example/postlicyd-rsyncrbl.conf $(DESTDIR)/etc/pfixtools/postlicyd-rsyncrbl.example.conf .PHONY: clean distclean install install-dir $(SUBDIRS) $(CLEAN_TARGETS) \ $(DISTCLEAN_TARGETS) $(INSTALL_TARGETS) install-postlicyd-tools \