ddns-scripts: update freedns.42.pl to json
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
This commit is contained in:
parent
7a41ef8283
commit
a4b13ba1dd
3 changed files with 13 additions and 7 deletions
|
@ -280,15 +280,17 @@ endef
|
||||||
define Package/ddns-scripts_freedns_42_pl/install
|
define Package/ddns-scripts_freedns_42_pl/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_freedns_42_pl
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/ddns.defaults $(1)/etc/uci-defaults/ddns_freedns_42_pl
|
||||||
|
|
||||||
$(INSTALL_DIR) $(1)/usr/lib/ddns
|
$(INSTALL_DIR) $(1)/usr/lib/ddns
|
||||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/update_freedns_42_pl.sh $(1)/usr/lib/ddns
|
$(INSTALL_BIN) ./files/usr/lib/ddns/update_freedns_42_pl.sh \
|
||||||
|
$(1)/usr/lib/ddns
|
||||||
|
|
||||||
|
$(INSTALL_DIR) $(1)/usr/share/ddns/services
|
||||||
|
$(INSTALL_DATA) ./files/usr/share/ddns/services/freedns.42.pl.json \
|
||||||
|
$(1)/usr/share/ddns/services
|
||||||
endef
|
endef
|
||||||
define Package/ddns-scripts_freedns_42_pl/postinst
|
define Package/ddns-scripts_freedns_42_pl/postinst
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# remove old services file entries
|
|
||||||
/bin/sed -i '/freedns\.42\.pl/d' $${IPKG_INSTROOT}/etc/ddns/services >/dev/null 2>&1
|
|
||||||
# and create new
|
|
||||||
printf "%s\\t%s\\n" '"freedns.42.pl"' '"update_freedns_42_pl.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services
|
|
||||||
# on real system restart service if enabled
|
# on real system restart service if enabled
|
||||||
[ -z "$${IPKG_INSTROOT}" ] && {
|
[ -z "$${IPKG_INSTROOT}" ] && {
|
||||||
[ -x /etc/uci-defaults/ddns_freedns_42_pl ] && \
|
[ -x /etc/uci-defaults/ddns_freedns_42_pl ] && \
|
||||||
|
@ -303,8 +305,6 @@ define Package/ddns-scripts_freedns_42_pl/prerm
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# if NOT run buildroot then stop service
|
# if NOT run buildroot then stop service
|
||||||
[ -z "$${IPKG_INSTROOT}" ] && /etc/init.d/ddns stop >/dev/null 2>&1
|
[ -z "$${IPKG_INSTROOT}" ] && /etc/init.d/ddns stop >/dev/null 2>&1
|
||||||
# remove services file entries
|
|
||||||
/bin/sed -i '/freedns\.42\.pl/d' $${IPKG_INSTROOT}/etc/ddns/services >/dev/null 2>&1
|
|
||||||
exit 0 # suppress errors
|
exit 0 # suppress errors
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
0
net/ddns-scripts/files/update_freedns_42_pl.sh → net/ddns-scripts/files/usr/lib/ddns/update_freedns_42_pl.sh
Executable file → Normal file
0
net/ddns-scripts/files/update_freedns_42_pl.sh → net/ddns-scripts/files/usr/lib/ddns/update_freedns_42_pl.sh
Executable file → Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"name": "freedns.42.pl",
|
||||||
|
"ipv4": {
|
||||||
|
"url": "update_freedns_42_pl.sh"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue