Update package version to 9.21.11

This commit is contained in:
2025-09-09 12:22:47 +03:00
parent 785f250d37
commit 0c59282bab
3 changed files with 20 additions and 16 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
URL="ftp://ftp.isc.org/isc/bind9/"
# Get version number from FTP server
VERSION=$(curl -s --list-only "$URL" | grep -E '^[0-9]{1,}\.[0-9]{1,}(\.[0-9]{1,})?$' | cut -d '-' -f2 | sort -V | tail -n1)
echo "$VERSION"