diff --git a/debian/changelog b/debian/changelog index 984a5fc..18d0781 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +udm-iptv (3.0.4) stable; urgency=medium + + * Support UXG Lite in configuration + + -- Fabian Mastenbroek Sat, 09 Dec 2023 13:00:00 +0000 + udm-iptv (3.0.3) stable; urgency=medium * Change default from igmpproxy to impproxy diff --git a/debian/config b/debian/config index 2c6167e..b3cbe42 100755 --- a/debian/config +++ b/debian/config @@ -127,6 +127,8 @@ while true; do UDM|UDR) db_set udm-iptv/wan-port eth4 ;; + UXG) + db_set udm-iptv/wan-port eth1 *) db_set udm-iptv/wan-port eth8 ;; diff --git a/install.sh b/install.sh index 7426b0f..457e1f6 100755 --- a/install.sh +++ b/install.sh @@ -18,7 +18,7 @@ if command -v unifi-os > /dev/null 2>&1; then exit 1 fi -UDM_IPTV_VERSION=3.0.3 +UDM_IPTV_VERSION=3.0.4 dest=$(mktemp -d) @@ -39,7 +39,7 @@ apt-get update -q 2>&1 /dev/null || true apt-get install -q -y dialog 2>&1 /dev/null || echo "Failed to install dialog... Using readline frontend" # Install udm-iptv -apt-get install -q "$dest/udm-iptv.deb" +apt-get install -o Acquire::AllowUnsizedPackages=1 -q "$dest/udm-iptv.deb" # Delete downloaded packages rm -rf "$dest"