Merge pull request #3641 from chris5560/master
ddns-scripts: extended/updated Makefile
This commit is contained in:
commit
18ce1a8f18
1 changed files with 136 additions and 37 deletions
|
@ -12,7 +12,7 @@ PKG_NAME:=ddns-scripts
|
||||||
PKG_VERSION:=2.7.6
|
PKG_VERSION:=2.7.6
|
||||||
# Release == build
|
# Release == build
|
||||||
# increase on changes of services files or tld_names.dat
|
# increase on changes of services files or tld_names.dat
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_LICENSE:=GPL-2.0
|
PKG_LICENSE:=GPL-2.0
|
||||||
PKG_MAINTAINER:=Christian Schoenebeck <christian.schoenebeck@gmail.com>
|
PKG_MAINTAINER:=Christian Schoenebeck <christian.schoenebeck@gmail.com>
|
||||||
|
@ -29,7 +29,7 @@ define Package/$(PKG_NAME)/Default
|
||||||
PKGARCH:=all
|
PKGARCH:=all
|
||||||
endef
|
endef
|
||||||
|
|
||||||
##### **********************************
|
###### *************************************************************************
|
||||||
define Package/$(PKG_NAME)
|
define Package/$(PKG_NAME)
|
||||||
$(call Package/$(PKG_NAME)/Default)
|
$(call Package/$(PKG_NAME)/Default)
|
||||||
TITLE:=Dynamic DNS Client scripts (with IPv6 support)
|
TITLE:=Dynamic DNS Client scripts (with IPv6 support)
|
||||||
|
@ -53,7 +53,7 @@ define Package/$(PKG_NAME)/config
|
||||||
Info : http://wiki.openwrt.org/doc/howto/ddns.client
|
Info : http://wiki.openwrt.org/doc/howto/ddns.client
|
||||||
endef
|
endef
|
||||||
|
|
||||||
##### **********************************
|
###### *************************************************************************
|
||||||
define Package/$(PKG_NAME)_cloudflare
|
define Package/$(PKG_NAME)_cloudflare
|
||||||
$(call Package/$(PKG_NAME)/Default)
|
$(call Package/$(PKG_NAME)/Default)
|
||||||
TITLE:=CloudFlare.com API v1 (deprecated)
|
TITLE:=CloudFlare.com API v1 (deprecated)
|
||||||
|
@ -63,7 +63,7 @@ define Package/$(PKG_NAME)_cloudflare/description
|
||||||
Dynamic DNS Client scripts extension for CloudFlare.com API-v1 (deprecated)
|
Dynamic DNS Client scripts extension for CloudFlare.com API-v1 (deprecated)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
##### **********************************
|
###### *************************************************************************
|
||||||
define Package/$(PKG_NAME)_cloudflare.com-v4
|
define Package/$(PKG_NAME)_cloudflare.com-v4
|
||||||
$(call Package/$(PKG_NAME)/Default)
|
$(call Package/$(PKG_NAME)/Default)
|
||||||
TITLE:=CloudFlare.com API v4 (require cURL)
|
TITLE:=CloudFlare.com API v4 (require cURL)
|
||||||
|
@ -73,7 +73,7 @@ define Package/$(PKG_NAME)_cloudflare.com-v4/description
|
||||||
Dynamic DNS Client scripts extension for CloudFlare.com API-v4 (require/install cURL)
|
Dynamic DNS Client scripts extension for CloudFlare.com API-v4 (require/install cURL)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
##### **********************************
|
###### *************************************************************************
|
||||||
define Package/$(PKG_NAME)_godaddy.com-v1
|
define Package/$(PKG_NAME)_godaddy.com-v1
|
||||||
$(call Package/$(PKG_NAME)/Default)
|
$(call Package/$(PKG_NAME)/Default)
|
||||||
TITLE:=GoDaddy.com (require cURL)
|
TITLE:=GoDaddy.com (require cURL)
|
||||||
|
@ -83,7 +83,7 @@ define Package/$(PKG_NAME)_godaddy.com-v1/description
|
||||||
Dynamic DNS Client scripts extension for GoDaddy.com (require/install cURL)
|
Dynamic DNS Client scripts extension for GoDaddy.com (require/install cURL)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
##### **********************************
|
###### *************************************************************************
|
||||||
define Package/$(PKG_NAME)_no-ip_com
|
define Package/$(PKG_NAME)_no-ip_com
|
||||||
$(call Package/$(PKG_NAME)/Default)
|
$(call Package/$(PKG_NAME)/Default)
|
||||||
TITLE:=DDNS extension for No-IP.com
|
TITLE:=DDNS extension for No-IP.com
|
||||||
|
@ -93,7 +93,7 @@ define Package/$(PKG_NAME)_no-ip_com/description
|
||||||
Dynamic DNS Client scripts extension for No-IP.com
|
Dynamic DNS Client scripts extension for No-IP.com
|
||||||
endef
|
endef
|
||||||
|
|
||||||
##### **********************************
|
###### *************************************************************************
|
||||||
define Package/$(PKG_NAME)_nsupdate
|
define Package/$(PKG_NAME)_nsupdate
|
||||||
$(call Package/$(PKG_NAME)/Default)
|
$(call Package/$(PKG_NAME)/Default)
|
||||||
TITLE:=DDNS extension using Bind nsupdate
|
TITLE:=DDNS extension using Bind nsupdate
|
||||||
|
@ -112,7 +112,7 @@ define Package/$(PKG_NAME)_nsupdate/config
|
||||||
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
##### **********************************
|
###### *************************************************************************
|
||||||
define Build/Configure
|
define Build/Configure
|
||||||
endef
|
endef
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
|
@ -138,7 +138,13 @@ define Package/$(PKG_NAME)/conffiles
|
||||||
/etc/config/ddns
|
/etc/config/ddns
|
||||||
endef
|
endef
|
||||||
|
|
||||||
##### **********************************
|
###### *************************************************************************
|
||||||
|
define Package/$(PKG_NAME)/preinst
|
||||||
|
#!/bin/sh
|
||||||
|
# if NOT run buildroot and PKG_UPGRADE then stop service
|
||||||
|
[ -z "$${IPKG_INSTROOT}" -a "$${PKG_UPGRADE}" = "1" ] && /etc/init.d/ddns stop >/dev/null 2>&1
|
||||||
|
exit 0 # suppress errors
|
||||||
|
endef
|
||||||
define Package/$(PKG_NAME)/install
|
define Package/$(PKG_NAME)/install
|
||||||
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
||||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/ddns.defaults $(1)/etc/uci-defaults/ddns
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/ddns.defaults $(1)/etc/uci-defaults/ddns
|
||||||
|
@ -155,22 +161,36 @@ define Package/$(PKG_NAME)/install
|
||||||
$(INSTALL_DIR) $(1)/usr/lib/ddns
|
$(INSTALL_DIR) $(1)/usr/lib/ddns
|
||||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/dynamic_dns_*.sh $(1)/usr/lib/ddns
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/dynamic_dns_*.sh $(1)/usr/lib/ddns
|
||||||
endef
|
endef
|
||||||
|
define Package/$(PKG_NAME)/postinst
|
||||||
|
#!/bin/sh
|
||||||
|
# if NOT run buildroot and PKG_UPGRADE then (re)start service if enabled
|
||||||
|
[ -z "$${IPKG_INSTROOT}" -a "$${PKG_UPGRADE}" = "1" ] \
|
||||||
|
&& /etc/init.d/ddns enabled \
|
||||||
|
&& /etc/init.d/ddns start >/dev/null 2>&1
|
||||||
|
exit 0 # suppress errors
|
||||||
|
endef
|
||||||
define Package/$(PKG_NAME)/prerm
|
define Package/$(PKG_NAME)/prerm
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# if run within buildroot exit
|
# if run within buildroot exit
|
||||||
[ -n "$${IPKG_INSTROOT}" ] && exit 0
|
[ -n "$${IPKG_INSTROOT}" ] && exit 0
|
||||||
|
|
||||||
# stop running scripts
|
# stop running scripts
|
||||||
/etc/init.d/ddns disable
|
|
||||||
/etc/init.d/ddns stop
|
/etc/init.d/ddns stop
|
||||||
|
/etc/init.d/ddns disable
|
||||||
|
|
||||||
# clear LuCI indexcache
|
# clear LuCI indexcache
|
||||||
rm -f /tmp/luci-indexcache >/dev/null 2>&1
|
rm -f /tmp/luci-indexcache >/dev/null 2>&1
|
||||||
|
|
||||||
exit 0
|
exit 0 # suppress errors
|
||||||
endef
|
endef
|
||||||
|
|
||||||
##### **********************************
|
###### *************************************************************************
|
||||||
|
define Package/$(PKG_NAME)_cloudflare/preinst
|
||||||
|
#!/bin/sh
|
||||||
|
# if NOT run buildroot then stop service
|
||||||
|
[ -z "$${IPKG_INSTROOT}" ] && /etc/init.d/ddns stop >/dev/null 2>&1
|
||||||
|
exit 0 # suppress errors
|
||||||
|
endef
|
||||||
define Package/$(PKG_NAME)_cloudflare/install
|
define Package/$(PKG_NAME)_cloudflare/install
|
||||||
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
||||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/ddns.defaults $(1)/etc/uci-defaults/ddns_cloudflare
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/ddns.defaults $(1)/etc/uci-defaults/ddns_cloudflare
|
||||||
|
@ -181,16 +201,33 @@ define Package/$(PKG_NAME)_cloudflare/install
|
||||||
endef
|
endef
|
||||||
define Package/$(PKG_NAME)_cloudflare/postinst
|
define Package/$(PKG_NAME)_cloudflare/postinst
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
# if NOT upgrading add entries
|
||||||
|
[ "$${PKG_UPGRADE}" = "1" ] || {
|
||||||
printf "%s\\t%s\\n" '"cloudflare.com-v1"' '"update_cloudflare_com_v1.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services
|
printf "%s\\t%s\\n" '"cloudflare.com-v1"' '"update_cloudflare_com_v1.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services
|
||||||
printf "%s\\t%s\\n" '"cloudflare.com-v1"' '"update_cloudflare_com_v1.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services_ipv6
|
printf "%s\\t%s\\n" '"cloudflare.com-v1"' '"update_cloudflare_com_v1.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services_ipv6
|
||||||
|
}
|
||||||
|
# on real system restart service if enabled
|
||||||
|
[ -z "$${IPKG_INSTROOT}" ] \
|
||||||
|
&& /etc/init.d/ddns enabled \
|
||||||
|
&& /etc/init.d/ddns start >/dev/null 2>&1
|
||||||
|
exit 0 # suppress errors
|
||||||
endef
|
endef
|
||||||
define Package/$(PKG_NAME)_cloudflare/prerm
|
define Package/$(PKG_NAME)_cloudflare/prerm
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
# if NOT run buildroot then stop service
|
||||||
|
[ -z "$${IPKG_INSTROOT}" ] && /etc/init.d/ddns stop >/dev/null 2>&1
|
||||||
/bin/sed -i '/cloudflare\.com-v1/d' $${IPKG_INSTROOT}/etc/ddns/services >/dev/null 2>&1
|
/bin/sed -i '/cloudflare\.com-v1/d' $${IPKG_INSTROOT}/etc/ddns/services >/dev/null 2>&1
|
||||||
/bin/sed -i '/cloudflare\.com-v1/d' $${IPKG_INSTROOT}/etc/ddns/services_ipv6 >/dev/null 2>&1
|
/bin/sed -i '/cloudflare\.com-v1/d' $${IPKG_INSTROOT}/etc/ddns/services_ipv6 >/dev/null 2>&1
|
||||||
|
exit 0 # suppress errors
|
||||||
endef
|
endef
|
||||||
|
|
||||||
##### **********************************
|
###### *************************************************************************
|
||||||
|
define Package/$(PKG_NAME)_cloudflare.com-v4/preinst
|
||||||
|
#!/bin/sh
|
||||||
|
# if NOT run buildroot then stop service
|
||||||
|
[ -z "$${IPKG_INSTROOT}" ] && /etc/init.d/ddns stop >/dev/null 2>&1
|
||||||
|
exit 0 # suppress errors
|
||||||
|
endef
|
||||||
define Package/$(PKG_NAME)_cloudflare.com-v4/install
|
define Package/$(PKG_NAME)_cloudflare.com-v4/install
|
||||||
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
||||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/ddns.defaults $(1)/etc/uci-defaults/ddns_cloudflare.com-v4
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/ddns.defaults $(1)/etc/uci-defaults/ddns_cloudflare.com-v4
|
||||||
|
@ -199,16 +236,32 @@ define Package/$(PKG_NAME)_cloudflare.com-v4/install
|
||||||
endef
|
endef
|
||||||
define Package/$(PKG_NAME)_cloudflare.com-v4/postinst
|
define Package/$(PKG_NAME)_cloudflare.com-v4/postinst
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
# if NOT upgrading add entries
|
||||||
|
[ "$${PKG_UPGRADE}" = "1" ] || {
|
||||||
printf "%s\\t%s\\n" '"cloudflare.com-v4"' '"update_cloudflare_com_v4.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services
|
printf "%s\\t%s\\n" '"cloudflare.com-v4"' '"update_cloudflare_com_v4.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services
|
||||||
printf "%s\\t%s\\n" '"cloudflare.com-v4"' '"update_cloudflare_com_v4.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services_ipv6
|
printf "%s\\t%s\\n" '"cloudflare.com-v4"' '"update_cloudflare_com_v4.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services_ipv6
|
||||||
|
}
|
||||||
|
# on real system restart service if enabled
|
||||||
|
[ -z "$${IPKG_INSTROOT}" ] \
|
||||||
|
&& /etc/init.d/ddns enabled \
|
||||||
|
&& /etc/init.d/ddns start >/dev/null 2>&1
|
||||||
|
exit 0 # suppress errors
|
||||||
endef
|
endef
|
||||||
define Package/$(PKG_NAME)_cloudflare.com-v4/prerm
|
define Package/$(PKG_NAME)_cloudflare.com-v4/prerm
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
[ -z "$${IPKG_INSTROOT}" ] && /etc/init.d/ddns stop >/dev/null 2>&1
|
||||||
/bin/sed -i '/cloudflare\.com-v4/d' $${IPKG_INSTROOT}/etc/ddns/services >/dev/null 2>&1
|
/bin/sed -i '/cloudflare\.com-v4/d' $${IPKG_INSTROOT}/etc/ddns/services >/dev/null 2>&1
|
||||||
/bin/sed -i '/cloudflare\.com-v4/d' $${IPKG_INSTROOT}/etc/ddns/services_ipv6 >/dev/null 2>&1
|
/bin/sed -i '/cloudflare\.com-v4/d' $${IPKG_INSTROOT}/etc/ddns/services_ipv6 >/dev/null 2>&1
|
||||||
|
exit 0 # suppress errors
|
||||||
endef
|
endef
|
||||||
|
|
||||||
##### **********************************
|
###### *************************************************************************
|
||||||
|
define Package/$(PKG_NAME)_godaddy.com-v1/preinst
|
||||||
|
#!/bin/sh
|
||||||
|
# if NOT run buildroot then stop service
|
||||||
|
[ -z "$${IPKG_INSTROOT}" ] && /etc/init.d/ddns stop >/dev/null 2>&1
|
||||||
|
exit 0 # suppress errors
|
||||||
|
endef
|
||||||
define Package/$(PKG_NAME)_godaddy.com-v1/install
|
define Package/$(PKG_NAME)_godaddy.com-v1/install
|
||||||
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
||||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/ddns.defaults $(1)/etc/uci-defaults/ddns_godaddy.com-v1
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/ddns.defaults $(1)/etc/uci-defaults/ddns_godaddy.com-v1
|
||||||
|
@ -217,46 +270,92 @@ define Package/$(PKG_NAME)_godaddy.com-v1/install
|
||||||
endef
|
endef
|
||||||
define Package/$(PKG_NAME)_godaddy.com-v1/postinst
|
define Package/$(PKG_NAME)_godaddy.com-v1/postinst
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
# if NOT upgrading add entries
|
||||||
|
[ "$${PKG_UPGRADE}" = "1" ] || {
|
||||||
printf "%s\\t%s\\n" '"godaddy.com-v1"' '"update_godaddy_com_v1.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services
|
printf "%s\\t%s\\n" '"godaddy.com-v1"' '"update_godaddy_com_v1.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services
|
||||||
printf "%s\\t%s\\n" '"godaddy.com-v1"' '"update_godaddy_com_v1.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services_ipv6
|
printf "%s\\t%s\\n" '"godaddy.com-v1"' '"update_godaddy_com_v1.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services_ipv6
|
||||||
|
}
|
||||||
|
# on real system restart service if enabled
|
||||||
|
[ -z "$${IPKG_INSTROOT}" ] \
|
||||||
|
&& /etc/init.d/ddns enabled \
|
||||||
|
&& /etc/init.d/ddns start >/dev/null 2>&1
|
||||||
|
exit 0 # suppress errors
|
||||||
endef
|
endef
|
||||||
define Package/$(PKG_NAME)_godaddy.com-v1/prerm
|
define Package/$(PKG_NAME)_godaddy.com-v1/prerm
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
[ -z "$${IPKG_INSTROOT}" ] && /etc/init.d/ddns stop >/dev/null 2>&1
|
||||||
/bin/sed -i '/godaddy\.com-v1/d' $${IPKG_INSTROOT}/etc/ddns/services >/dev/null 2>&1
|
/bin/sed -i '/godaddy\.com-v1/d' $${IPKG_INSTROOT}/etc/ddns/services >/dev/null 2>&1
|
||||||
/bin/sed -i '/godaddy\.com-v1/d' $${IPKG_INSTROOT}/etc/ddns/services_ipv6 >/dev/null 2>&1
|
/bin/sed -i '/godaddy\.com-v1/d' $${IPKG_INSTROOT}/etc/ddns/services_ipv6 >/dev/null 2>&1
|
||||||
|
exit 0 # suppress errors
|
||||||
endef
|
endef
|
||||||
|
|
||||||
##### **********************************
|
###### *************************************************************************
|
||||||
|
define Package/$(PKG_NAME)_no-ip_com/preinst
|
||||||
|
#!/bin/sh
|
||||||
|
# if NOT run buildroot then stop service
|
||||||
|
[ -z "$${IPKG_INSTROOT}" ] && /etc/init.d/ddns stop >/dev/null 2>&1
|
||||||
|
exit 0 # suppress errors
|
||||||
|
endef
|
||||||
define Package/$(PKG_NAME)_no-ip_com/install
|
define Package/$(PKG_NAME)_no-ip_com/install
|
||||||
|
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/ddns.defaults $(1)/etc/uci-defaults/ddns_no-ip_com
|
||||||
$(INSTALL_DIR) $(1)/usr/lib/ddns
|
$(INSTALL_DIR) $(1)/usr/lib/ddns
|
||||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/update_no-ip_com.sh $(1)/usr/lib/ddns
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/update_no-ip_com.sh $(1)/usr/lib/ddns
|
||||||
endef
|
endef
|
||||||
define Package/$(PKG_NAME)_no-ip_com/postinst
|
define Package/$(PKG_NAME)_no-ip_com/postinst
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
# if NOT upgrading add entries
|
||||||
|
[ "$${PKG_UPGRADE}" = "1" ] || {
|
||||||
printf "%s\\t%s\\n" '"no-ip.com"' '"update_no-ip_com.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services
|
printf "%s\\t%s\\n" '"no-ip.com"' '"update_no-ip_com.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services
|
||||||
|
}
|
||||||
|
# on real system restart service if enabled
|
||||||
|
[ -z "$${IPKG_INSTROOT}" ] \
|
||||||
|
&& /etc/init.d/ddns enabled \
|
||||||
|
&& /etc/init.d/ddns start >/dev/null 2>&1
|
||||||
|
exit 0 # suppress errors
|
||||||
endef
|
endef
|
||||||
define Package/$(PKG_NAME)_no-ip_com/prerm
|
define Package/$(PKG_NAME)_no-ip_com/prerm
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
[ -z "$${IPKG_INSTROOT}" ] && /etc/init.d/ddns stop >/dev/null 2>&1
|
||||||
/bin/sed -i '/no-ip\.com/d' $${IPKG_INSTROOT}/etc/ddns/services >/dev/null 2>&1
|
/bin/sed -i '/no-ip\.com/d' $${IPKG_INSTROOT}/etc/ddns/services >/dev/null 2>&1
|
||||||
|
exit 0 # suppress errors
|
||||||
endef
|
endef
|
||||||
|
|
||||||
##### **********************************
|
###### *************************************************************************
|
||||||
|
define Package/$(PKG_NAME)_nsupdate/preinst
|
||||||
|
#!/bin/sh
|
||||||
|
# if NOT run buildroot then stop service
|
||||||
|
[ -z "$${IPKG_INSTROOT}" ] && /etc/init.d/ddns stop >/dev/null 2>&1
|
||||||
|
exit 0 # suppress errors
|
||||||
|
endef
|
||||||
define Package/$(PKG_NAME)_nsupdate/install
|
define Package/$(PKG_NAME)_nsupdate/install
|
||||||
|
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/ddns.defaults $(1)/etc/uci-defaults/ddns_nsupdate
|
||||||
$(INSTALL_DIR) $(1)/usr/lib/ddns
|
$(INSTALL_DIR) $(1)/usr/lib/ddns
|
||||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/update_nsupdate.sh $(1)/usr/lib/ddns
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/update_nsupdate.sh $(1)/usr/lib/ddns
|
||||||
endef
|
endef
|
||||||
define Package/$(PKG_NAME)_nsupdate/postinst
|
define Package/$(PKG_NAME)_nsupdate/postinst
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
# if NOT upgrading add entries
|
||||||
|
[ "$${PKG_UPGRADE}" = "1" ] || {
|
||||||
printf "%s\\t%s\\n" '"bind-nsupdate"' '"update_nsupdate.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services
|
printf "%s\\t%s\\n" '"bind-nsupdate"' '"update_nsupdate.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services
|
||||||
printf "%s\\t%s\\n" '"bind-nsupdate"' '"update_nsupdate.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services_ipv6
|
printf "%s\\t%s\\n" '"bind-nsupdate"' '"update_nsupdate.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services_ipv6
|
||||||
|
}
|
||||||
|
# on real system restart service if enabled
|
||||||
|
[ -z "$${IPKG_INSTROOT}" ] \
|
||||||
|
&& /etc/init.d/ddns enabled \
|
||||||
|
&& /etc/init.d/ddns start >/dev/null 2>&1
|
||||||
|
exit 0 # suppress errors
|
||||||
endef
|
endef
|
||||||
define Package/$(PKG_NAME)_nsupdate/prerm
|
define Package/$(PKG_NAME)_nsupdate/prerm
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
[ -z "$${IPKG_INSTROOT}" ] && /etc/init.d/ddns stop >/dev/null 2>&1
|
||||||
/bin/sed -i '/bind-nsupdate/d' $${IPKG_INSTROOT}/etc/ddns/services >/dev/null 2>&1
|
/bin/sed -i '/bind-nsupdate/d' $${IPKG_INSTROOT}/etc/ddns/services >/dev/null 2>&1
|
||||||
/bin/sed -i '/bind-nsupdate/d' $${IPKG_INSTROOT}/etc/ddns/services_ipv6 >/dev/null 2>&1
|
/bin/sed -i '/bind-nsupdate/d' $${IPKG_INSTROOT}/etc/ddns/services_ipv6 >/dev/null 2>&1
|
||||||
|
exit 0 # suppress errors
|
||||||
endef
|
endef
|
||||||
|
|
||||||
##### **********************************
|
###### *************************************************************************
|
||||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||||
$(eval $(call BuildPackage,$(PKG_NAME)_cloudflare))
|
$(eval $(call BuildPackage,$(PKG_NAME)_cloudflare))
|
||||||
$(eval $(call BuildPackage,$(PKG_NAME)_cloudflare.com-v4))
|
$(eval $(call BuildPackage,$(PKG_NAME)_cloudflare.com-v4))
|
||||||
|
|
Loading…
Reference in a new issue