diff options
| author | Florian Eckert | 2026-02-06 09:50:21 +0000 |
|---|---|---|
| committer | Florian Eckert | 2026-02-06 09:57:44 +0000 |
| commit | 2b6adb9ae76baa5c104b05dfed9aac0e6083a66f (patch) | |
| tree | 47dced1fd2ce5f9dcb61205c0b4f1c464d66466e | |
| parent | 703a057ed37d42ba30ea683971c06108cb9e2d0d (diff) | |
| download | packages-2b6adb9ae76baa5c104b05dfed9aac0e6083a66f.tar.gz | |
ddns-scripts: Fix hetzner install target file name
This was overlooked. Therefore, the package could not be built.
Fixes: e9fe0249f605 ("ddns-scripts: Fix Hetzner Cloud naming")
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
| -rwxr-xr-x | net/ddns-scripts/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ddns-scripts/Makefile b/net/ddns-scripts/Makefile index 2cd2f7f5db..bcff0212f8 100755 --- a/net/ddns-scripts/Makefile +++ b/net/ddns-scripts/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ddns-scripts PKG_VERSION:=2.8.2 -PKG_RELEASE:=88 +PKG_RELEASE:=89 PKG_LICENSE:=GPL-2.0 @@ -588,7 +588,7 @@ define Package/ddns-scripts-hetzner-cloud/install $(1)/usr/lib/ddns $(INSTALL_DIR) $(1)/usr/share/ddns/default - $(INSTALL_DATA) ./files/usr/share/ddns/default/hetzner.com.json \ + $(INSTALL_DATA) ./files/usr/share/ddns/default/hetzner.cloud.json \ $(1)/usr/share/ddns/default endef |