ddns-scripts: update godaddy.com-v1 to json
authorFlorian Eckert <redacted>
Fri, 18 Sep 2020 08:59:43 +0000 (10:59 +0200)
committerFlorian Eckert <redacted>
Mon, 21 Sep 2020 08:17:01 +0000 (10:17 +0200)
Signed-off-by: Florian Eckert <redacted>
net/ddns-scripts/Makefile
net/ddns-scripts/files/usr/lib/ddns/update_godaddy_com_v1.sh [moved from net/ddns-scripts/files/update_godaddy_com_v1.sh with 100% similarity, mode: 0644]
net/ddns-scripts/files/usr/share/ddns/services/godaddy.com-v1.json [new file with mode: 0644]

index 11e14032b6b1dc43671d8d07e191f84c2f91abf6..56fb0ce3828aeb93a223bf1b43fd648733a0a285 100755 (executable)
@@ -318,17 +318,17 @@ endef
 define Package/ddns-scripts_godaddy.com-v1/install
        $(INSTALL_DIR) $(1)/etc/uci-defaults
        $(INSTALL_BIN) $(PKG_BUILD_DIR)/files/ddns.defaults $(1)/etc/uci-defaults/ddns_godaddy.com-v1
+
        $(INSTALL_DIR) $(1)/usr/lib/ddns
-       $(INSTALL_BIN) $(PKG_BUILD_DIR)/files/update_godaddy_com_v1.sh $(1)/usr/lib/ddns
+       $(INSTALL_BIN) ./files/usr/lib/ddns/update_godaddy_com_v1.sh \
+               $(1)/usr/lib/ddns
+
+       $(INSTALL_DIR) $(1)/usr/share/ddns/services
+       $(INSTALL_DATA) ./files/usr/share/ddns/services/godaddy.com-v1.json \
+               $(1)/usr/share/ddns/services
 endef
 define Package/ddns-scripts_godaddy.com-v1/postinst
        #!/bin/sh
-       # remove old services file entries
-       /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
-       # and create new
-       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
        # on real system restart service if enabled
        [ -z "$${IPKG_INSTROOT}" ] && {
                [ -x /etc/uci-defaults/ddns_godaddy.com-v1 ] && \
@@ -343,9 +343,6 @@ define Package/ddns-scripts_godaddy.com-v1/prerm
        #!/bin/sh
        # if NOT run buildroot then stop service
        [ -z "$${IPKG_INSTROOT}" ] && /etc/init.d/ddns stop                             >/dev/null 2>&1
-       # remove services file entries
-       /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
        exit 0  # suppress errors
 endef
 
diff --git a/net/ddns-scripts/files/usr/share/ddns/services/godaddy.com-v1.json b/net/ddns-scripts/files/usr/share/ddns/services/godaddy.com-v1.json
new file mode 100644 (file)
index 0000000..211e0e5
--- /dev/null
@@ -0,0 +1,9 @@
+{
+       "name": "godaddy.com-v1",
+       "ipv4": {
+               "url": "update_godaddy_com_v1.sh"
+       },
+       "ipv6": {
+               "url": "update_godaddy_com_v1.sh"
+       }
+}
git clone https://git.99rst.org/PROJECT