From 8bf08a94aa76ca2c1808bed0bb9d43f168c7d76d Mon Sep 17 00:00:00 2001 From: "Daniel F. Dickinson" Date: Wed, 14 Jan 2026 23:32:05 -0500 Subject: [PATCH] radicale3: make the empty uci config consistent We update the missing sections defaults to match the upstream default, which are also our defaults when there is an UCI configuration, and are also the defaults for the LuCI app. Signed-off-by: Daniel F. Dickinson (cherry picked from commit c199e374153c991ccdfba511ea298226b3217128) --- net/radicale3/files/radicale3.init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/radicale3/files/radicale3.init b/net/radicale3/files/radicale3.init index a6b733d50c..ce7829587f 100755 --- a/net/radicale3/files/radicale3.init +++ b/net/radicale3/files/radicale3.init @@ -147,7 +147,7 @@ add_missing_sections() { echo "[$section]" >> "$cfgfile" case $section in server) - echo "hosts = 0.0.0.0:5232, [::]:5232" >> "$cfgfile" + echo "hosts = 127.0.0.1:5232, [::1]:5232" >> "$cfgfile" ;; auth) echo "type = htpasswd" >> "$cfgfile"