diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2020-03-29 16:46:07 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2020-03-29 16:46:07 +0200 |
commit | 5e2b161379420acd39e0474bb7f59545df7e1f3a (patch) | |
tree | 33d48cd795c7b0b7731e68ff61e2ccecdb94220d /utils/lxc-searx.env | |
parent | 0742c2504dae04ac054d263de8a2b8ab6161312c (diff) | |
download | searxng-5e2b161379420acd39e0474bb7f59545df7e1f3a.tar.gz searxng-5e2b161379420acd39e0474bb7f59545df7e1f3a.zip |
Makefile: marginal fix
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'utils/lxc-searx.env')
-rw-r--r-- | utils/lxc-searx.env | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/utils/lxc-searx.env b/utils/lxc-searx.env index f81ee1c08..123108bf7 100644 --- a/utils/lxc-searx.env +++ b/utils/lxc-searx.env @@ -63,11 +63,12 @@ lxc_suite_info() { lxc_set_suite_env for ip in $(global_IPs) ; do if [[ $ip =~ .*:.* ]]; then - info_msg "(${ip%|*}) IPv6: http://[${ip#*|}]" + info_msg "(${ip%|*}) IPv6: http://[${ip#*|}]" else # IPv4: - info_msg "(${ip%|*}) filtron: http://${ip#*|}:4004/" - info_msg "(${ip%|*}) morty: http://${ip#*|}:3000/" + info_msg "(${ip%|*}) filtron: http://${ip#*|}:4004/" + info_msg "(${ip%|*}) morty: http://${ip#*|}:3000/" + info_msg "(${ip%|*}) docs-live: http://${ip#*|}:8080/" fi done ) |