2020-01-14 18:26:54 +00:00
|
|
|
#!/usr/bin/env bash
|
2020-01-27 18:08:40 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
2020-01-29 19:00:50 +00:00
|
|
|
# shellcheck disable=SC2001
|
2020-01-14 18:26:54 +00:00
|
|
|
|
|
|
|
# shellcheck source=utils/lib.sh
|
|
|
|
source "$(dirname "${BASH_SOURCE[0]}")/lib.sh"
|
2022-07-30 14:13:47 +00:00
|
|
|
# shellcheck source=utils/brand.env
|
|
|
|
source "${REPO_ROOT}/utils/brand.env"
|
2021-06-29 17:01:07 +00:00
|
|
|
|
2020-01-14 18:26:54 +00:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# config
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
|
2022-07-30 14:13:47 +00:00
|
|
|
PUBLIC_URL="${PUBLIC_URL:-${SEARXNG_URL}}"
|
|
|
|
|
2020-02-02 17:14:10 +00:00
|
|
|
SERVICE_NAME="searx"
|
|
|
|
SERVICE_USER="${SERVICE_USER:-${SERVICE_NAME}}"
|
2022-06-16 14:30:18 +00:00
|
|
|
SEARXNG_SETTINGS_PATH="/etc/searx/settings.yml"
|
|
|
|
SEARXNG_UWSGI_APP="searx.ini"
|
2020-01-14 18:26:54 +00:00
|
|
|
|
|
|
|
# ----------------------------------------------------------------------------
|
2020-01-20 15:55:05 +00:00
|
|
|
usage() {
|
2020-01-14 18:26:54 +00:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
# shellcheck disable=SC1117
|
|
|
|
cat <<EOF
|
2020-02-02 17:14:10 +00:00
|
|
|
usage::
|
2022-06-16 14:30:18 +00:00
|
|
|
$(basename "$0") remove all
|
2020-01-14 18:26:54 +00:00
|
|
|
|
2022-06-16 14:30:18 +00:00
|
|
|
remove all: complete uninstall of SearXNG service
|
2022-07-30 14:13:47 +00:00
|
|
|
|
|
|
|
environment:
|
|
|
|
PUBLIC_URL : ${PUBLIC_URL}
|
2020-01-14 18:26:54 +00:00
|
|
|
EOF
|
2021-06-29 17:01:07 +00:00
|
|
|
|
2020-02-16 19:07:37 +00:00
|
|
|
[[ -n ${1} ]] && err_msg "$1"
|
2020-01-14 18:26:54 +00:00
|
|
|
}
|
|
|
|
|
2020-01-20 15:55:05 +00:00
|
|
|
main() {
|
2020-01-29 19:00:50 +00:00
|
|
|
|
2020-02-04 16:59:58 +00:00
|
|
|
local _usage="unknown or missing $1 command $2"
|
2020-01-14 18:26:54 +00:00
|
|
|
|
|
|
|
case $1 in
|
|
|
|
remove)
|
2021-06-29 17:01:07 +00:00
|
|
|
rst_title "SearXNG (remove)" part
|
2020-01-14 18:26:54 +00:00
|
|
|
sudo_or_exit
|
|
|
|
case $2 in
|
|
|
|
all) remove_all;;
|
|
|
|
*) usage "$_usage"; exit 42;;
|
|
|
|
esac ;;
|
2020-02-04 16:59:58 +00:00
|
|
|
*) usage "unknown or missing command $1"; exit 42;;
|
2020-01-14 18:26:54 +00:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
remove_all() {
|
2021-06-29 17:01:07 +00:00
|
|
|
rst_title "De-Install SearXNG (service)"
|
2020-01-21 17:38:57 +00:00
|
|
|
|
|
|
|
rst_para "\
|
|
|
|
It goes without saying that this script can only be used to remove
|
|
|
|
installations that were installed with this script."
|
|
|
|
|
2021-06-29 17:01:07 +00:00
|
|
|
if ! ask_yn "Do you really want to deinstall SearXNG?"; then
|
2020-01-16 13:01:38 +00:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
remove_searx_uwsgi
|
2020-02-01 15:59:27 +00:00
|
|
|
drop_service_account "${SERVICE_USER}"
|
2020-02-17 17:58:59 +00:00
|
|
|
remove_settings
|
|
|
|
wait_key
|
2020-01-30 18:55:51 +00:00
|
|
|
if service_is_available "${PUBLIC_URL}"; then
|
|
|
|
MSG="** Don't forgett to remove your public site! (${PUBLIC_URL}) **" wait_key 10
|
|
|
|
fi
|
2020-01-14 18:26:54 +00:00
|
|
|
}
|
|
|
|
|
2020-02-17 17:58:59 +00:00
|
|
|
remove_settings() {
|
2021-07-12 13:31:42 +00:00
|
|
|
rst_title "remove SearXNG settings" section
|
2020-02-17 17:58:59 +00:00
|
|
|
echo
|
2021-10-02 15:18:05 +00:00
|
|
|
info_msg "delete ${SEARXNG_SETTINGS_PATH}"
|
|
|
|
rm -f "${SEARXNG_SETTINGS_PATH}"
|
2020-02-17 17:58:59 +00:00
|
|
|
}
|
|
|
|
|
2020-01-14 18:26:54 +00:00
|
|
|
remove_searx_uwsgi() {
|
2021-10-11 19:20:22 +00:00
|
|
|
rst_title "Remove SearXNG's uWSGI app (searxng.ini)" section
|
2020-01-14 18:26:54 +00:00
|
|
|
echo
|
2021-10-11 19:20:22 +00:00
|
|
|
uWSGI_remove_app "$SEARXNG_UWSGI_APP"
|
2020-01-14 18:26:54 +00:00
|
|
|
}
|
|
|
|
|
2020-03-02 18:00:19 +00:00
|
|
|
|
2020-01-14 18:26:54 +00:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
main "$@"
|
|
|
|
# ----------------------------------------------------------------------------
|