summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile26
1 files changed, 11 insertions, 15 deletions
diff --git a/Makefile b/Makefile
index a9a5dad..39e6a61 100644
--- a/Makefile
+++ b/Makefile
@@ -157,15 +157,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
-
SELINUX_ENABLED := $(shell [ -x /usr/sbin/sestatus ] && {/usr/sbin/sestatus | grep "SELinux status:" | grep -q "enabled"})
ifneq ($(wildcard .version),)
@@ -491,8 +482,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)
@@ -502,12 +500,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