From 5657bfcdf8a60b354cfc0d210520f2b0c34be367 Mon Sep 17 00:00:00 2001 From: Tim Wilkinson Date: Fri, 24 Mar 2023 17:22:59 -0700 Subject: [PATCH] Dont let services uses hostname which are not propagated. OLSR doesnt allow this. --- files/www/cgi-bin/ports | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/files/www/cgi-bin/ports b/files/www/cgi-bin/ports index 43ee086e..9931028d 100755 --- a/files/www/cgi-bin/ports +++ b/files/www/cgi-bin/ports @@ -1187,7 +1187,9 @@ function print_services() end for i = 1,parms.dhcp_num do - html.print("") + if parms["dhcp" .. i .. "_noprop"] ~= "#NOPROP" then + html.print("") + end end html.print("") else