Only install conf.d config files if the conf.d directory doesn't already exist.

This commit is contained in:
Gunnar Beutner 2013-10-01 08:47:56 +02:00
parent e338be1e8f
commit 3cf59ad5e3
1 changed files with 6 additions and 6 deletions

View File

@ -7,11 +7,11 @@ CONFIG_FILES = \
macros.conf
install-data-local:
@$(MKDIR_P) $(icinga2confdir); \
for file in $(CONFIG_FILES); do \
if [ ! -e $(icinga2confdir)/$$file ]; then \
$(INSTALL_DATA) -o @icinga_user@ -g @icinga_group@ -m 0640 $(srcdir)/$$file $(icinga2confdir)/$$file; \
fi; \
done
if [ ! -e $(icinga2confdir); ]; then \
@$(MKDIR_P) $(icinga2confdir); \
for file in $(CONFIG_FILES); do \
$(INSTALL_DATA) -o @icinga_user@ -g @icinga_group@ -m 0640 $(srcdir)/$$file $(icinga2confdir)/$$file; \
done;
fi
EXTRA_DIST = $(CONFIG_FILES)