summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xutils/lib.sh13
-rwxr-xr-xutils/searx.sh7
2 files changed, 5 insertions, 15 deletions
diff --git a/utils/lib.sh b/utils/lib.sh
index a032d0465..3a742f9da 100755
--- a/utils/lib.sh
+++ b/utils/lib.sh
@@ -767,14 +767,10 @@ apache_dissable_site() {
sudo -H a2dissite -q "${CONF}"
;;
arch-*)
- mkdir -p "${APACHE_SITES_ENABLED}"
rm -f "${APACHE_SITES_ENABLED}/${CONF}"
- ln -s "${APACHE_SITES_AVAILABLE}/${CONF}" "${APACHE_SITES_ENABLED}/${CONF}"
;;
fedora-*)
- mkdir -p "${APACHE_SITES_ENABLED}"
rm -f "${APACHE_SITES_ENABLED}/${CONF}"
- ln -s "${APACHE_SITES_AVAILABLE}/${CONF}" "${APACHE_SITES_ENABLED}/${CONF}"
;;
esac
apache_reload
@@ -1314,11 +1310,11 @@ primary_ip() {
case $DIST_ID in
arch)
- echo "$(ip -o addr show \
- | sed -nr 's/[0-9]*:\s*([a-z0-9]*).*inet[6]?\s*([a-z0-9.:]*).*scope global.*/\2/p' \
- | head -n 1)"
+ ip -o addr show \
+ | sed -nr 's/[0-9]*:\s*([a-z0-9]*).*inet[6]?\s*([a-z0-9.:]*).*scope global.*/\2/p' \
+ | head -n 1
;;
- *) echo "$(hostname -I | cut -d' ' -f1)" ;;
+ *) hostname -I | cut -d' ' -f1 ;;
esac
}
@@ -1334,5 +1330,6 @@ url_replace_hostname(){
# url_replace_hostname http://searx-ubu1604/morty $(primary_ip)
# http://10.246.86.250/morty
+ # shellcheck disable=SC2001
echo "$1" | sed "s|\(http[s]*://\)[^/]*\(.*\)|\1$2\2|"
}
diff --git a/utils/searx.sh b/utils/searx.sh
index 681b9a0e3..dde2b93ab 100755
--- a/utils/searx.sh
+++ b/utils/searx.sh
@@ -580,13 +580,6 @@ EOF
set_result_proxy() {
info_msg "try to set result proxy ..."
- local line
- local stage=0
- local url=" url: $1"
- local key=" key: $2"
- if [[ -z $2 ]]; then
- key=
- fi
cp "${SEARX_SETTINGS_PATH}" "${SEARX_SETTINGS_PATH}.bak"
_set_result_proxy "$1" "$2" > "${SEARX_SETTINGS_PATH}"
}