From cfd26ae2bd28c03e1c810b503b63c095a14f2947 Mon Sep 17 00:00:00 2001 From: billz Date: Thu, 6 Aug 2020 08:34:14 +0100 Subject: [PATCH] Add newline --- installers/configport.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/configport.sh b/installers/configport.sh index ee78080d..b4f44e33 100755 --- a/installers/configport.sh +++ b/installers/configport.sh @@ -44,7 +44,7 @@ if [ -n "$server_bind" ]; then echo "Changing lighttpd server.bind to $server_bind ..." grep -q 'server.bind' "$lighttpd_conf" && \ sed -i "s/^\(server\.bind.*= \)\".*\"*/\1\"$server_bind\"/g" "$lighttpd_conf" || \ - printf "server.bind \t\t\t\t = \"$server_bind\"" >> "$lighttpd_conf" + printf "server.bind \t\t\t\t = \"$server_bind\"\n" >> "$lighttpd_conf" echo "RaspAP will now be available at address $server_bind" conf_change=1 fi