summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortzafrir <tzafrir@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-07-22 17:46:40 +0000
committertzafrir <tzafrir@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-07-22 17:46:40 +0000
commit671825cb9b7c04a8178a05acde99e23951fda9f0 (patch)
tree21848d314b6c1b1accf054a20e686b2e04b16f3f /Makefile
parent7821bb45ca4cb4aa4192bb5ea8ff1f700752933e (diff)
Revert initd config file installation to the greeddy one of before
zaptel 1.2.19/1.4.4 - install on both /etc/default/zaptel and /etc/sysconfig/zaptel . Closes 0010257 . (From branches/1.2 r2771) git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.4@2772 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile26
1 files changed, 11 insertions, 15 deletions
diff --git a/Makefile b/Makefile
index 9df79d9..a06b926 100644
--- a/Makefile
+++ b/Makefile
@@ -206,15 +206,6 @@ ifneq (,$(NET_SCR_DIR))
COPY_NETSCR := install -D ifup-hdlc $(NETSCR_TARGET)
endif
-RCCONF_DIR := $(firstword $(wildcard /etc/default /etc/sysconfig))
-ifneq (,$(RCCONF_DIR))
- RCCONF_TARGET := $(DESTDIR)$(RCCONF_DIR)/zaptel
- # Let's not step over an existing config file:
- ifeq (,$(wildcard $(RCCONF_TARGET)))
- COPY_RCCONF := install -D -m 644 zaptel.sysconfig $(RCCONF_TARGET)
- endif
-endif
-
ifneq ($(wildcard .version),)
ZAPTELVERSION:=$(shell cat .version)
else
@@ -540,8 +531,15 @@ config:
ifneq (,$(COPY_INITD))
$(COPY_INITD)
endif
-ifneq (,$(COPY_RCCONF))
- $(COPY_RCCONF)
+ifneq (,$(wildcard /etc/default))
+ ifeq (,$(wildcard $(DESTDIR)/etc/default/zaptel))
+ install -D -m 644 zaptel.sysconfig $(DESTDIR)/etc/default/zaptel
+ endif
+endif
+ifneq (,$(wildcard /etc/sysconfig))
+ ifeq (,$(wildcard $(DESTDIR)/etc/sysconfig/zaptel))
+ install -D -m 644 zaptel.sysconfig $(DESTDIR)/etc/sysconfig/zaptel
+ endif
endif
ifneq (,$(COPY_NETSCR))
$(COPY_NETSCR)
@@ -551,12 +549,10 @@ ifneq (,$(ADD_INITD))
endif
@echo "Zaptel has been configured."
@echo ""
-ifneq (,$(COPY_RCCONF))
@echo "If you have any zaptel hardware it is now recommended to "
- @echo "edit $(RCCONF_TARGET) and set there an optimal value for "
- @echo "the variable MODULES ."
+ @echo "edit /etc/default/zaptel or /etc/sysconfig/zaptel and set there an "
+ @echo "optimal value for the variable MODULES ."
@echo ""
-endif
@echo "I think that the zaptel hardware you have on your system is:"
@xpp/utils/zaptel_hardware || true