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"
|
2021-06-29 17:01:07 +00:00
|
|
|
|
|
|
|
# shellcheck source=utils/lib_install.sh
|
|
|
|
source "${REPO_ROOT}/utils/lib_install.sh"
|
2020-01-14 18:26:54 +00:00
|
|
|
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# config
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
|
2021-10-02 14:58:09 +00:00
|
|
|
SEARX_INTERNAL_HTTP="${SEARXNG_BIND_ADDRESS}:${SEARXNG_PORT}"
|
2020-02-04 09:39:42 +00:00
|
|
|
|
2020-01-29 19:00:50 +00:00
|
|
|
SEARX_URL_PATH="${SEARX_URL_PATH:-$(echo "${PUBLIC_URL}" \
|
|
|
|
| sed -e 's,^.*://[^/]*\(/.*\),\1,g')}"
|
|
|
|
[[ "${SEARX_URL_PATH}" == "${PUBLIC_URL}" ]] && SEARX_URL_PATH=/
|
2020-01-27 18:08:40 +00:00
|
|
|
|
2020-02-02 17:14:10 +00:00
|
|
|
SERVICE_NAME="searx"
|
|
|
|
SERVICE_USER="${SERVICE_USER:-${SERVICE_NAME}}"
|
2020-02-04 09:39:42 +00:00
|
|
|
SERVICE_HOME_BASE="${SERVICE_HOME_BASE:-/usr/local}"
|
|
|
|
SERVICE_HOME="${SERVICE_HOME_BASE}/${SERVICE_USER}"
|
2020-01-14 18:26:54 +00:00
|
|
|
# shellcheck disable=SC2034
|
|
|
|
SERVICE_GROUP="${SERVICE_USER}"
|
|
|
|
|
2020-03-29 13:09:34 +00:00
|
|
|
GIT_BRANCH="${GIT_BRANCH:-master}"
|
2020-01-16 13:01:38 +00:00
|
|
|
SEARX_PYENV="${SERVICE_HOME}/searx-pyenv"
|
|
|
|
SEARX_SRC="${SERVICE_HOME}/searx-src"
|
2021-10-11 08:56:50 +00:00
|
|
|
SEARXNG_SETTINGS_PATH="/etc/searxng/settings.yml"
|
2020-01-20 15:55:05 +00:00
|
|
|
SEARX_UWSGI_APP="searx.ini"
|
2020-01-27 18:08:40 +00:00
|
|
|
# shellcheck disable=SC2034
|
2020-01-21 17:38:57 +00:00
|
|
|
SEARX_UWSGI_SOCKET="/run/uwsgi/app/searx/socket"
|
2020-01-14 18:26:54 +00:00
|
|
|
|
2020-03-02 18:00:19 +00:00
|
|
|
# apt packages
|
|
|
|
SEARX_PACKAGES_debian="\
|
2020-12-18 21:31:13 +00:00
|
|
|
python3-dev python3-babel python3-venv
|
2020-03-02 18:00:19 +00:00
|
|
|
uwsgi uwsgi-plugin-python3
|
2020-03-30 16:47:01 +00:00
|
|
|
git build-essential libxslt-dev zlib1g-dev libffi-dev libssl-dev
|
|
|
|
shellcheck"
|
2020-03-09 00:37:26 +00:00
|
|
|
|
|
|
|
BUILD_PACKAGES_debian="\
|
2020-03-31 16:25:40 +00:00
|
|
|
firefox graphviz imagemagick texlive-xetex librsvg2-bin
|
2021-01-02 16:27:16 +00:00
|
|
|
texlive-latex-recommended texlive-extra-utils fonts-dejavu
|
2021-06-18 15:33:56 +00:00
|
|
|
latexmk
|
2021-06-16 17:18:13 +00:00
|
|
|
npm"
|
2020-03-02 18:00:19 +00:00
|
|
|
|
|
|
|
# pacman packages
|
|
|
|
SEARX_PACKAGES_arch="\
|
2020-12-18 21:31:13 +00:00
|
|
|
python python-pip python-lxml python-babel
|
2020-03-02 18:00:19 +00:00
|
|
|
uwsgi uwsgi-plugin-python
|
2020-03-30 16:47:01 +00:00
|
|
|
git base-devel libxml2
|
|
|
|
shellcheck"
|
2020-03-09 00:37:26 +00:00
|
|
|
|
|
|
|
BUILD_PACKAGES_arch="\
|
2020-03-31 16:25:40 +00:00
|
|
|
firefox graphviz imagemagick texlive-bin extra/librsvg
|
2021-06-18 15:33:56 +00:00
|
|
|
texlive-core texlive-latexextra ttf-dejavu
|
2021-06-16 17:18:13 +00:00
|
|
|
npm"
|
2020-03-02 18:00:19 +00:00
|
|
|
|
|
|
|
# dnf packages
|
|
|
|
SEARX_PACKAGES_fedora="\
|
2020-12-18 21:31:13 +00:00
|
|
|
python python-pip python-lxml python-babel
|
2020-03-02 18:00:19 +00:00
|
|
|
uwsgi uwsgi-plugin-python3
|
2020-03-30 16:47:01 +00:00
|
|
|
git @development-tools libxml2
|
2021-01-19 20:26:04 +00:00
|
|
|
ShellCheck"
|
2020-03-09 00:37:26 +00:00
|
|
|
|
|
|
|
BUILD_PACKAGES_fedora="\
|
2020-03-31 16:25:40 +00:00
|
|
|
firefox graphviz graphviz-gd ImageMagick librsvg2-tools
|
2020-03-09 00:37:26 +00:00
|
|
|
texlive-xetex-bin texlive-collection-fontsrecommended
|
|
|
|
texlive-collection-latex dejavu-sans-fonts dejavu-serif-fonts
|
2021-06-18 15:33:56 +00:00
|
|
|
dejavu-sans-mono-fonts
|
2021-06-16 17:18:13 +00:00
|
|
|
npm"
|
2020-03-02 18:00:19 +00:00
|
|
|
|
2020-08-01 20:12:44 +00:00
|
|
|
# yum packages
|
2021-06-16 17:18:13 +00:00
|
|
|
#
|
|
|
|
# hint: We do no longer support yum packages, it is to complex to maintain
|
|
|
|
# automate installation of packages like npm. In the firts step we ignore
|
|
|
|
# CentOS-7 as developer & build platform (the inital patch which brought
|
|
|
|
# CentOS-7 supports was not intended to be a developer platform).
|
|
|
|
|
2020-08-01 20:12:44 +00:00
|
|
|
SEARX_PACKAGES_centos="\
|
2020-12-18 21:31:13 +00:00
|
|
|
python36 python36-pip python36-lxml python-babel
|
2020-08-01 20:12:44 +00:00
|
|
|
uwsgi uwsgi-plugin-python3
|
|
|
|
git @development-tools libxml2
|
2021-01-19 20:26:04 +00:00
|
|
|
ShellCheck"
|
2020-08-01 20:12:44 +00:00
|
|
|
|
|
|
|
BUILD_PACKAGES_centos="\
|
|
|
|
firefox graphviz graphviz-gd ImageMagick librsvg2-tools
|
|
|
|
texlive-xetex-bin texlive-collection-fontsrecommended
|
|
|
|
texlive-collection-latex dejavu-sans-fonts dejavu-serif-fonts
|
2021-06-16 17:18:13 +00:00
|
|
|
dejavu-sans-mono-fonts"
|
2020-08-01 20:12:44 +00:00
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
case $DIST_ID-$DIST_VERS in
|
|
|
|
ubuntu-16.04|ubuntu-18.04)
|
2020-03-09 00:37:26 +00:00
|
|
|
SEARX_PACKAGES="${SEARX_PACKAGES_debian}"
|
|
|
|
BUILD_PACKAGES="${BUILD_PACKAGES_debian}"
|
2020-04-07 16:31:51 +00:00
|
|
|
APACHE_PACKAGES="$APACHE_PACKAGES libapache2-mod-proxy-uwsgi"
|
2020-03-09 00:37:26 +00:00
|
|
|
;;
|
2020-04-13 09:34:28 +00:00
|
|
|
ubuntu-20.04)
|
|
|
|
# https://askubuntu.com/a/1224710
|
|
|
|
SEARX_PACKAGES="${SEARX_PACKAGES_debian} python-is-python3"
|
|
|
|
BUILD_PACKAGES="${BUILD_PACKAGES_debian}"
|
|
|
|
;;
|
2020-04-07 16:31:51 +00:00
|
|
|
ubuntu-*|debian-*)
|
|
|
|
SEARX_PACKAGES="${SEARX_PACKAGES_debian}"
|
|
|
|
BUILD_PACKAGES="${BUILD_PACKAGES_debian}"
|
|
|
|
;;
|
|
|
|
arch-*)
|
2020-03-09 00:37:26 +00:00
|
|
|
SEARX_PACKAGES="${SEARX_PACKAGES_arch}"
|
|
|
|
BUILD_PACKAGES="${BUILD_PACKAGES_arch}"
|
|
|
|
;;
|
2020-04-07 16:31:51 +00:00
|
|
|
fedora-*)
|
2020-03-09 00:37:26 +00:00
|
|
|
SEARX_PACKAGES="${SEARX_PACKAGES_fedora}"
|
|
|
|
BUILD_PACKAGES="${BUILD_PACKAGES_fedora}"
|
|
|
|
;;
|
2020-08-01 20:12:44 +00:00
|
|
|
centos-7)
|
|
|
|
SEARX_PACKAGES="${SEARX_PACKAGES_centos}"
|
|
|
|
BUILD_PACKAGES="${BUILD_PACKAGES_centos}"
|
|
|
|
;;
|
2020-02-23 11:10:45 +00:00
|
|
|
esac
|
2020-01-27 18:08:40 +00:00
|
|
|
|
2020-01-21 17:38:57 +00:00
|
|
|
# Apache Settings
|
2020-01-29 19:00:50 +00:00
|
|
|
APACHE_SEARX_SITE="searx.conf"
|
2020-01-20 18:08:56 +00:00
|
|
|
|
2020-01-14 18:26:54 +00:00
|
|
|
# shellcheck disable=SC2034
|
|
|
|
CONFIG_FILES=(
|
2020-02-23 20:05:22 +00:00
|
|
|
"${uWSGI_APPS_AVAILABLE}/${SEARX_UWSGI_APP}"
|
2020-01-14 18:26:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# shellcheck disable=SC2034
|
|
|
|
CONFIG_BACKUP_ENCRYPTED=(
|
2021-10-02 15:18:05 +00:00
|
|
|
"${SEARXNG_SETTINGS_PATH}"
|
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::
|
2020-01-14 18:26:54 +00:00
|
|
|
$(basename "$0") shell
|
2021-06-29 19:36:32 +00:00
|
|
|
$(basename "$0") install [all|init-src|dot-config|user|searx-src|pyenv|uwsgi|packages|settings|buildhost]
|
2020-01-14 18:26:54 +00:00
|
|
|
$(basename "$0") update [searx]
|
2020-01-16 13:01:38 +00:00
|
|
|
$(basename "$0") remove [all|user|pyenv|searx-src]
|
2020-01-14 18:26:54 +00:00
|
|
|
$(basename "$0") activate [service]
|
|
|
|
$(basename "$0") deactivate [service]
|
2021-07-12 14:51:36 +00:00
|
|
|
$(basename "$0") inspect [service|settings <key>]
|
2020-04-05 15:40:37 +00:00
|
|
|
$(basename "$0") option [debug-[on|off]|image-proxy-[on|off]|result-proxy <url> <key>]
|
2020-01-29 19:00:50 +00:00
|
|
|
$(basename "$0") apache [install|remove]
|
2020-01-14 18:26:54 +00:00
|
|
|
|
|
|
|
shell
|
|
|
|
start interactive shell from user ${SERVICE_USER}
|
2020-01-16 13:01:38 +00:00
|
|
|
install / remove
|
2020-02-02 17:14:10 +00:00
|
|
|
:all: complete (de-) installation of searx service
|
2020-02-04 09:39:42 +00:00
|
|
|
:user: add/remove service user '$SERVICE_USER' ($SERVICE_HOME)
|
2021-06-29 19:36:32 +00:00
|
|
|
:dot-config: copy ./config.sh to ${SEARX_SRC}
|
2020-03-29 13:09:34 +00:00
|
|
|
:searx-src: clone $GIT_URL
|
2021-06-29 19:36:32 +00:00
|
|
|
:init-src: copy files (SEARX_SRC_INIT_FILES) to ${SEARX_SRC}
|
2020-02-02 17:14:10 +00:00
|
|
|
:pyenv: create/remove virtualenv (python) in $SEARX_PYENV
|
2020-03-06 13:47:00 +00:00
|
|
|
:uwsgi: install searx uWSGI application
|
2021-10-02 15:18:05 +00:00
|
|
|
:settings: reinstall settings from ${SEARXNG_SETTINGS_PATH}
|
2020-03-08 17:32:30 +00:00
|
|
|
:packages: install needed packages from OS package manager
|
2020-03-31 16:25:40 +00:00
|
|
|
:buildhost: install packages from OS package manager needed by buildhosts
|
2020-01-14 18:26:54 +00:00
|
|
|
update searx
|
2021-07-12 13:31:42 +00:00
|
|
|
Update SearXNG installation ($SERVICE_HOME)
|
2020-01-29 19:00:50 +00:00
|
|
|
activate service
|
2020-01-14 18:26:54 +00:00
|
|
|
activate and start service daemon (systemd unit)
|
|
|
|
deactivate service
|
|
|
|
stop and deactivate service daemon (systemd unit)
|
2021-07-12 14:51:36 +00:00
|
|
|
inspect
|
|
|
|
:service: run some small tests and inspect service's status and log
|
|
|
|
:settings: inspect YAML setting <key> from SearXNG instance (${SEARX_SRC})
|
2020-01-20 15:55:05 +00:00
|
|
|
option
|
2020-01-29 19:00:50 +00:00
|
|
|
set one of the available options
|
|
|
|
apache
|
2021-07-12 13:31:42 +00:00
|
|
|
:install: apache site with the SearXNG uwsgi app
|
2020-02-02 17:14:10 +00:00
|
|
|
:remove: apache site ${APACHE_FILTRON_SITE}
|
2021-06-29 17:01:07 +00:00
|
|
|
---- sourced ${DOT_CONFIG}
|
2020-02-03 12:25:51 +00:00
|
|
|
SERVICE_USER : ${SERVICE_USER}
|
2021-06-29 17:01:07 +00:00
|
|
|
SERVICE_HOME : ${SERVICE_HOME}
|
2020-01-14 18:26:54 +00:00
|
|
|
EOF
|
2021-06-29 17:01:07 +00:00
|
|
|
|
|
|
|
install_log_searx_instance
|
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
|
|
|
required_commands \
|
2020-02-23 11:10:45 +00:00
|
|
|
sudo systemctl install git wget curl \
|
2020-01-29 19:00:50 +00:00
|
|
|
|| exit
|
|
|
|
|
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
|
2020-04-11 11:19:11 +00:00
|
|
|
--getenv) var="$2"; echo "${!var}"; exit 0;;
|
2020-01-14 18:26:54 +00:00
|
|
|
-h|--help) usage; exit 0;;
|
|
|
|
shell)
|
|
|
|
sudo_or_exit
|
2020-02-01 15:59:27 +00:00
|
|
|
interactive_shell "${SERVICE_USER}"
|
2020-01-14 18:26:54 +00:00
|
|
|
;;
|
2020-01-27 18:08:40 +00:00
|
|
|
inspect)
|
2020-01-14 18:26:54 +00:00
|
|
|
case $2 in
|
|
|
|
service)
|
|
|
|
sudo_or_exit
|
2020-01-27 18:08:40 +00:00
|
|
|
inspect_service
|
2020-01-14 18:26:54 +00:00
|
|
|
;;
|
2021-07-12 14:51:36 +00:00
|
|
|
settings)
|
|
|
|
prompt_installation_setting "$3"
|
|
|
|
dump_return $?
|
|
|
|
;;
|
2020-01-14 18:26:54 +00:00
|
|
|
*) usage "$_usage"; exit 42;;
|
|
|
|
esac ;;
|
|
|
|
install)
|
|
|
|
sudo_or_exit
|
|
|
|
case $2 in
|
2021-07-30 07:43:17 +00:00
|
|
|
all)
|
|
|
|
rst_title "SearXNG (install)" part
|
|
|
|
install_all
|
|
|
|
;;
|
2021-06-29 19:36:32 +00:00
|
|
|
user)
|
2021-07-30 07:43:17 +00:00
|
|
|
rst_title "SearXNG (install user)"
|
2021-06-29 19:36:32 +00:00
|
|
|
verify_continue_install
|
|
|
|
assert_user
|
|
|
|
;;
|
|
|
|
pyenv)
|
2021-07-30 07:43:17 +00:00
|
|
|
rst_title "SearXNG (install pyenv)"
|
2021-06-29 19:36:32 +00:00
|
|
|
verify_continue_install
|
|
|
|
create_pyenv
|
|
|
|
;;
|
|
|
|
searx-src)
|
2021-07-30 07:43:17 +00:00
|
|
|
rst_title "SearXNG (install searx-src)"
|
2021-06-29 19:36:32 +00:00
|
|
|
verify_continue_install
|
2021-07-30 07:43:17 +00:00
|
|
|
assert_user
|
2021-06-29 19:36:32 +00:00
|
|
|
clone_searx
|
|
|
|
install_DOT_CONFIG
|
|
|
|
init_SEARX_SRC
|
|
|
|
;;
|
|
|
|
init-src)
|
|
|
|
init_SEARX_SRC
|
|
|
|
;;
|
|
|
|
dot-config)
|
|
|
|
install_DOT_CONFIG
|
|
|
|
;;
|
|
|
|
settings)
|
|
|
|
install_settings
|
|
|
|
;;
|
2020-04-13 09:34:28 +00:00
|
|
|
uwsgi)
|
2021-07-30 07:43:17 +00:00
|
|
|
rst_title "SearXNG (install uwsgi)"
|
2021-06-29 19:36:32 +00:00
|
|
|
verify_continue_install
|
2020-04-13 09:34:28 +00:00
|
|
|
install_searx_uwsgi
|
|
|
|
if ! service_is_available "http://${SEARX_INTERNAL_HTTP}"; then
|
2021-07-12 13:31:42 +00:00
|
|
|
err_msg "URL http://${SEARX_INTERNAL_HTTP} not available, check SearXNG & uwsgi setup!"
|
2020-04-13 09:34:28 +00:00
|
|
|
fi
|
|
|
|
;;
|
2020-03-09 00:37:26 +00:00
|
|
|
packages)
|
2021-07-30 07:43:17 +00:00
|
|
|
rst_title "SearXNG (install packages)"
|
2020-03-09 00:37:26 +00:00
|
|
|
pkg_install "$SEARX_PACKAGES"
|
|
|
|
;;
|
|
|
|
buildhost)
|
2021-07-30 07:43:17 +00:00
|
|
|
rst_title "SearXNG (install buildhost)"
|
2020-03-09 00:37:26 +00:00
|
|
|
pkg_install "$SEARX_PACKAGES"
|
|
|
|
pkg_install "$BUILD_PACKAGES"
|
|
|
|
;;
|
2020-01-14 18:26:54 +00:00
|
|
|
*) usage "$_usage"; exit 42;;
|
|
|
|
esac ;;
|
|
|
|
update)
|
|
|
|
sudo_or_exit
|
|
|
|
case $2 in
|
|
|
|
searx) update_searx;;
|
|
|
|
*) usage "$_usage"; exit 42;;
|
|
|
|
esac ;;
|
|
|
|
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;;
|
2020-02-01 15:59:27 +00:00
|
|
|
user) drop_service_account "${SERVICE_USER}";;
|
2020-01-16 13:01:38 +00:00
|
|
|
pyenv) remove_pyenv ;;
|
|
|
|
searx-src) remove_searx ;;
|
2020-01-14 18:26:54 +00:00
|
|
|
*) usage "$_usage"; exit 42;;
|
|
|
|
esac ;;
|
|
|
|
activate)
|
|
|
|
sudo_or_exit
|
|
|
|
case $2 in
|
2020-01-20 15:55:05 +00:00
|
|
|
service)
|
2020-01-29 19:00:50 +00:00
|
|
|
activate_service ;;
|
2020-01-14 18:26:54 +00:00
|
|
|
*) usage "$_usage"; exit 42;;
|
|
|
|
esac ;;
|
|
|
|
deactivate)
|
|
|
|
sudo_or_exit
|
|
|
|
case $2 in
|
2020-01-29 19:00:50 +00:00
|
|
|
service) deactivate_service ;;
|
2020-01-20 15:55:05 +00:00
|
|
|
*) usage "$_usage"; exit 42;;
|
|
|
|
esac ;;
|
|
|
|
option)
|
|
|
|
sudo_or_exit
|
|
|
|
case $2 in
|
|
|
|
debug-on) echo; enable_debug ;;
|
|
|
|
debug-off) echo; disable_debug ;;
|
2020-04-04 15:54:20 +00:00
|
|
|
result-proxy) set_result_proxy "$3" "$4" ;;
|
|
|
|
image-proxy-on) enable_image_proxy ;;
|
|
|
|
image-proxy-off) disable_image_proxy ;;
|
2020-01-14 18:26:54 +00:00
|
|
|
*) usage "$_usage"; exit 42;;
|
|
|
|
esac ;;
|
2020-01-29 19:00:50 +00:00
|
|
|
apache)
|
|
|
|
sudo_or_exit
|
|
|
|
case $2 in
|
|
|
|
install) install_apache_site ;;
|
|
|
|
remove) remove_apache_site ;;
|
|
|
|
*) usage "$_usage"; exit 42;;
|
|
|
|
esac ;;
|
2020-03-02 18:00:19 +00:00
|
|
|
doc) rst-doc;;
|
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
|
|
|
|
}
|
|
|
|
|
2020-02-27 18:13:03 +00:00
|
|
|
_service_prefix=" ${_Yellow}|$SERVICE_USER|${_creset} "
|
2020-01-14 18:26:54 +00:00
|
|
|
|
|
|
|
install_all() {
|
2021-06-29 17:01:07 +00:00
|
|
|
rst_title "Install SearXNG (service)"
|
|
|
|
verify_continue_install
|
2020-02-23 11:10:45 +00:00
|
|
|
pkg_install "$SEARX_PACKAGES"
|
2020-01-14 18:26:54 +00:00
|
|
|
wait_key
|
|
|
|
assert_user
|
|
|
|
wait_key
|
|
|
|
clone_searx
|
|
|
|
wait_key
|
2021-06-29 19:36:32 +00:00
|
|
|
install_DOT_CONFIG
|
|
|
|
wait_key
|
|
|
|
init_SEARX_SRC
|
|
|
|
wait_key
|
2020-01-16 13:01:38 +00:00
|
|
|
create_pyenv
|
2020-01-14 18:26:54 +00:00
|
|
|
wait_key
|
2020-02-17 17:58:59 +00:00
|
|
|
install_settings
|
2020-01-14 18:26:54 +00:00
|
|
|
wait_key
|
|
|
|
test_local_searx
|
|
|
|
wait_key
|
|
|
|
install_searx_uwsgi
|
2020-04-05 15:40:37 +00:00
|
|
|
if ! service_is_available "http://${SEARX_INTERNAL_HTTP}"; then
|
2021-07-12 13:31:42 +00:00
|
|
|
err_msg "URL http://${SEARX_INTERNAL_HTTP} not available, check SearXNG & uwsgi setup!"
|
2020-01-27 18:08:40 +00:00
|
|
|
fi
|
2020-02-26 18:07:55 +00:00
|
|
|
if ask_yn "Do you want to inspect the installation?" Ny; then
|
2020-01-27 18:08:40 +00:00
|
|
|
inspect_service
|
2020-01-20 15:55:05 +00:00
|
|
|
fi
|
2020-01-14 18:26:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
update_searx() {
|
2021-07-12 13:31:42 +00:00
|
|
|
rst_title "Update SearXNG instance"
|
2020-01-14 18:26:54 +00:00
|
|
|
|
|
|
|
echo
|
2020-02-08 16:12:01 +00:00
|
|
|
tee_stderr 0.3 <<EOF | sudo -H -u "${SERVICE_USER}" -i 2>&1 | prefix_stdout "$_service_prefix"
|
2020-01-14 18:26:54 +00:00
|
|
|
cd ${SEARX_SRC}
|
2020-03-29 13:09:34 +00:00
|
|
|
git checkout -B "$GIT_BRANCH"
|
2020-02-08 16:12:01 +00:00
|
|
|
git pull
|
2020-05-21 13:46:43 +00:00
|
|
|
pip install -U pip
|
|
|
|
pip install -U setuptools
|
|
|
|
pip install -U wheel
|
[fix] setup.py requires pyyaml installed
pip install -e .
...
Obtaining file:///usr/local/searx/searx-src
ERROR: Command errored out with exit status 1:
command: /usr/local/searx/searx-pyenv/bin/python3 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/usr/local/searx/searx-src/setup.py'"'"'; __file__='"'"'/usr/local/searx/searx-src/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'rn'"'"', '"'"'n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /tmp/pip-pip-egg-info-vzer91m2
cwd: /usr/local/searx/searx-src/
Complete output (9 lines):
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/usr/local/searx/searx-src/setup.py", line 10, in <module>
from searx.version import VERSION_STRING
File "/usr/local/searx/searx-src/searx/__init__.py", line 19, in <module>
import searx.settings_loader
File "/usr/local/searx/searx-src/searx/settings_loader.py", line 8, in <module>
import yaml
ModuleNotFoundError: No module named 'yaml'
----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-01-16 07:58:13 +00:00
|
|
|
pip install -U pyyaml
|
2020-05-21 13:46:43 +00:00
|
|
|
pip install -U -e .
|
2020-01-14 18:26:54 +00:00
|
|
|
EOF
|
2020-02-17 17:58:59 +00:00
|
|
|
install_settings
|
2020-02-23 20:05:22 +00:00
|
|
|
uWSGI_restart "$SEARX_UWSGI_APP"
|
2020-01-14 18:26:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
assert_user() {
|
|
|
|
rst_title "user $SERVICE_USER" section
|
|
|
|
echo
|
2021-07-30 07:43:17 +00:00
|
|
|
if getent passwd "$SERVICE_USER" > /dev/null; then
|
|
|
|
echo "user exists"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2020-01-14 18:26:54 +00:00
|
|
|
tee_stderr 1 <<EOF | bash | prefix_stdout
|
2020-02-23 11:10:45 +00:00
|
|
|
useradd --shell /bin/bash --system \
|
|
|
|
--home-dir "$SERVICE_HOME" \
|
|
|
|
--comment 'Privacy-respecting metasearch engine' $SERVICE_USER
|
|
|
|
mkdir "$SERVICE_HOME"
|
|
|
|
chown -R "$SERVICE_GROUP:$SERVICE_GROUP" "$SERVICE_HOME"
|
2020-01-14 18:26:54 +00:00
|
|
|
groups $SERVICE_USER
|
|
|
|
EOF
|
|
|
|
#SERVICE_HOME="$(sudo -i -u "$SERVICE_USER" echo \$HOME)"
|
|
|
|
#export SERVICE_HOME
|
|
|
|
#echo "export SERVICE_HOME=$SERVICE_HOME"
|
|
|
|
}
|
|
|
|
|
2020-01-20 15:55:05 +00:00
|
|
|
clone_is_available() {
|
2020-02-17 17:58:59 +00:00
|
|
|
[[ -f "$SEARX_SRC/.git/config" ]]
|
2020-01-20 15:55:05 +00:00
|
|
|
}
|
|
|
|
|
2020-01-14 18:26:54 +00:00
|
|
|
# shellcheck disable=SC2164
|
2020-01-20 15:55:05 +00:00
|
|
|
clone_searx() {
|
2021-07-12 13:31:42 +00:00
|
|
|
rst_title "Clone SearXNG sources" section
|
2020-01-14 18:26:54 +00:00
|
|
|
echo
|
2020-04-30 15:49:26 +00:00
|
|
|
if ! sudo -i -u "$SERVICE_USER" ls -d "$REPO_ROOT" > /dev/null; then
|
|
|
|
die 42 "user '$SERVICE_USER' missed read permission: $REPO_ROOT"
|
|
|
|
fi
|
2020-01-16 13:01:38 +00:00
|
|
|
SERVICE_HOME="$(sudo -i -u "$SERVICE_USER" echo \$HOME 2>/dev/null)"
|
|
|
|
if [[ ! "${SERVICE_HOME}" ]]; then
|
2021-07-12 13:31:42 +00:00
|
|
|
err_msg "to clone SearXNG sources, user $SERVICE_USER hast to be created first"
|
2020-01-16 13:01:38 +00:00
|
|
|
return 42
|
|
|
|
fi
|
2020-12-23 15:06:06 +00:00
|
|
|
if [[ ! $(git show-ref "refs/heads/${GIT_BRANCH}") ]]; then
|
|
|
|
warn_msg "missing local branch ${GIT_BRANCH}"
|
|
|
|
info_msg "create local branch ${GIT_BRANCH} from start point: origin/${GIT_BRANCH}"
|
|
|
|
git branch "${GIT_BRANCH}" "origin/${GIT_BRANCH}"
|
|
|
|
fi
|
2021-03-03 17:22:41 +00:00
|
|
|
if [[ ! $(git rev-parse --abbrev-ref HEAD) == "${GIT_BRANCH}" ]]; then
|
|
|
|
warn_msg "take into account, installing branch $GIT_BRANCH while current branch is $(git rev-parse --abbrev-ref HEAD)"
|
2020-12-23 15:06:06 +00:00
|
|
|
fi
|
2020-01-16 13:01:38 +00:00
|
|
|
export SERVICE_HOME
|
2020-02-17 17:58:59 +00:00
|
|
|
git_clone "$REPO_ROOT" "$SEARX_SRC" \
|
2020-03-29 13:09:34 +00:00
|
|
|
"$GIT_BRANCH" "$SERVICE_USER"
|
2020-01-14 18:26:54 +00:00
|
|
|
|
|
|
|
pushd "${SEARX_SRC}" > /dev/null
|
|
|
|
tee_stderr 0.1 <<EOF | sudo -H -u "${SERVICE_USER}" -i 2>&1 | prefix_stdout "$_service_prefix"
|
|
|
|
cd "${SEARX_SRC}"
|
2020-03-29 13:09:34 +00:00
|
|
|
git remote set-url origin ${GIT_URL}
|
2020-01-14 18:26:54 +00:00
|
|
|
git config user.email "$ADMIN_EMAIL"
|
|
|
|
git config user.name "$ADMIN_NAME"
|
2020-01-16 13:01:38 +00:00
|
|
|
git config --list
|
2020-01-14 18:26:54 +00:00
|
|
|
EOF
|
|
|
|
popd > /dev/null
|
|
|
|
}
|
|
|
|
|
2021-06-29 19:36:32 +00:00
|
|
|
prompt_installation_status(){
|
2021-07-12 14:51:36 +00:00
|
|
|
|
2021-07-30 07:40:36 +00:00
|
|
|
# shellcheck disable=SC2034
|
|
|
|
local GIT_URL GIT_BRANCH VERSION_STRING VERSION_TAG
|
|
|
|
local ret_val state branch remote remote_url
|
2021-07-12 14:51:36 +00:00
|
|
|
state="$(install_searx_get_state)"
|
|
|
|
|
|
|
|
case $state in
|
2021-07-30 07:43:17 +00:00
|
|
|
missing-searx-clone|missing-searx-pyenv)
|
2021-06-29 19:36:32 +00:00
|
|
|
info_msg "${_BBlue}(status: $(install_searx_get_state))${_creset}"
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
*)
|
2021-07-30 07:43:17 +00:00
|
|
|
info_msg "SearXNG instance already installed at: $SEARX_SRC"
|
|
|
|
info_msg "status: ${_BBlue}$(install_searx_get_state)${_creset} "
|
2021-07-27 16:37:46 +00:00
|
|
|
branch="$(git name-rev --name-only HEAD)"
|
|
|
|
remote="$(git config branch."${branch}".remote)"
|
|
|
|
remote_url="$(git config remote."${remote}".url)"
|
|
|
|
eval "$(get_installed_version_variables)"
|
2021-07-30 07:43:17 +00:00
|
|
|
|
|
|
|
ret_val=0
|
2021-07-27 16:37:46 +00:00
|
|
|
if ! [ "$GIT_URL" = "$remote_url" ]; then
|
|
|
|
warn_msg "instance's git URL: '${GIT_URL}'" \
|
2021-07-12 14:51:36 +00:00
|
|
|
"differs from local clone's remote URL: ${remote_url}"
|
2021-07-30 07:43:17 +00:00
|
|
|
ret_val=42
|
2021-07-12 14:51:36 +00:00
|
|
|
fi
|
2021-07-27 16:37:46 +00:00
|
|
|
if ! [ "$GIT_BRANCH" = "$branch" ]; then
|
|
|
|
warn_msg "instance git branch: ${GIT_BRANCH}" \
|
2021-07-12 14:51:36 +00:00
|
|
|
"differs from local clone's branch: ${branch}"
|
2021-07-30 07:43:17 +00:00
|
|
|
ret_val=42
|
2021-07-12 14:51:36 +00:00
|
|
|
fi
|
2021-07-30 07:43:17 +00:00
|
|
|
return $ret_val
|
2021-06-29 19:36:32 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
verify_continue_install(){
|
|
|
|
if ! prompt_installation_status; then
|
|
|
|
MSG="[${_BCyan}KEY${_creset}] to continue installation / [${_BCyan}CTRL-C${_creset}] to exit" \
|
|
|
|
wait_key
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-07-12 14:51:36 +00:00
|
|
|
prompt_installation_setting(){
|
|
|
|
|
2021-07-27 16:37:46 +00:00
|
|
|
# usage: prompt_installation_setting brand.docs_url
|
2021-07-12 14:51:36 +00:00
|
|
|
#
|
|
|
|
# Prompts the value of the (YAML) setting in the SearXNG instance.
|
|
|
|
|
|
|
|
local _state
|
|
|
|
_state="$(install_searx_get_state)"
|
|
|
|
case $_state in
|
|
|
|
python-installed|installer-modified)
|
|
|
|
sudo -H -u "${SERVICE_USER}" "${SEARX_PYENV}/bin/python" <<EOF
|
|
|
|
import sys
|
|
|
|
from searx import get_setting
|
|
|
|
name = "${1}"
|
|
|
|
unset = object()
|
|
|
|
value = get_setting(name, unset)
|
|
|
|
if value is unset:
|
|
|
|
sys.stderr.write("error: setting '%s' does not exists\n" % name)
|
|
|
|
sys.exit(42)
|
|
|
|
print(value)
|
|
|
|
sys.exit(0)
|
|
|
|
EOF
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
return 42
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2021-07-27 16:37:46 +00:00
|
|
|
get_installed_version_variables() {
|
|
|
|
|
|
|
|
# usage: eval "$(get_installed_version_variables)"
|
|
|
|
#
|
|
|
|
# Set variables VERSION_STRING, VERSION_TAG, GIT_URL, GIT_BRANCH
|
|
|
|
|
|
|
|
local _state
|
|
|
|
_state="$(install_searx_get_state)"
|
|
|
|
case $_state in
|
|
|
|
python-installed|installer-modified)
|
2021-07-30 07:40:36 +00:00
|
|
|
sudo -H -u "${SERVICE_USER}" "${SEARX_PYENV}/bin/python" -m searx.version;;
|
2021-07-27 16:37:46 +00:00
|
|
|
*)
|
|
|
|
return 42
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2021-06-29 19:36:32 +00:00
|
|
|
init_SEARX_SRC(){
|
|
|
|
rst_title "Update instance: ${SEARX_SRC}/" section
|
|
|
|
|
|
|
|
if ! clone_is_available; then
|
2021-07-12 13:31:42 +00:00
|
|
|
err_msg "you have to install SearXNG first"
|
2021-06-29 19:36:32 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
init_SEARX_SRC_INIT_FILES
|
|
|
|
|
|
|
|
if [ ${#SEARX_SRC_INIT_FILES[*]} -eq 0 ]; then
|
|
|
|
info_msg "no files registered in SEARX_SRC_INIT_FILES"
|
|
|
|
return 2
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo
|
|
|
|
echo "Update instance with file(s) from: ${REPO_ROOT}"
|
|
|
|
echo
|
|
|
|
for i in "${SEARX_SRC_INIT_FILES[@]}"; do
|
|
|
|
echo "- $i"
|
|
|
|
done
|
2021-07-30 07:43:17 +00:00
|
|
|
echo
|
|
|
|
echo "Be careful when modifying an existing installation."
|
2021-06-29 19:36:32 +00:00
|
|
|
if ! ask_yn "Do you really want to update these files in the instance?" Yn; then
|
|
|
|
return 42
|
|
|
|
fi
|
|
|
|
for fname in "${SEARX_SRC_INIT_FILES[@]}"; do
|
|
|
|
while true; do
|
|
|
|
choose_one _reply "choose next step with file ${fname}" \
|
|
|
|
"replace file" \
|
2021-07-30 07:43:17 +00:00
|
|
|
"leave file unchanged" \
|
2021-06-29 19:36:32 +00:00
|
|
|
"diff files" \
|
|
|
|
"interactive shell"
|
|
|
|
|
|
|
|
case $_reply in
|
|
|
|
"leave file unchanged")
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
"replace file")
|
|
|
|
info_msg "copy: ${REPO_ROOT}/${fname} --> ${SEARX_SRC}/${fname}"
|
|
|
|
cp "${REPO_ROOT}/${fname}" "${SEARX_SRC}/${fname}"
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
"diff files")
|
|
|
|
$DIFF_CMD "${SEARX_SRC}/${fname}" "${REPO_ROOT}/${fname}"
|
|
|
|
;;
|
|
|
|
"interactive shell")
|
|
|
|
backup_file "${SEARX_SRC}/${fname}"
|
|
|
|
echo -e "// edit ${_Red}${dst}${_creset} to your needs"
|
|
|
|
echo -e "// exit with [${_BCyan}CTRL-D${_creset}]"
|
|
|
|
sudo -H -u "${SERVICE_USER}" -i
|
|
|
|
$DIFF_CMD "${SEARX_SRC}/${fname}" "${REPO_ROOT}/${fname}"
|
|
|
|
echo
|
|
|
|
echo -e "// ${_BBlack}did you edit file ...${_creset}"
|
|
|
|
echo -en "// ${_Red}${dst}${_creset}"
|
|
|
|
if ask_yn "//${_BBlack}... to your needs?${_creset}"; then
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
install_DOT_CONFIG(){
|
|
|
|
rst_title "Update instance: ${SEARX_SRC}/.config.sh" section
|
|
|
|
|
|
|
|
if cmp --silent "${REPO_ROOT}/.config.sh" "${SEARX_SRC}/.config.sh"; then
|
|
|
|
info_msg "${SEARX_SRC}/.config.sh is up to date"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
diff "${REPO_ROOT}/.config.sh" "${SEARX_SRC}/.config.sh"
|
|
|
|
if ! ask_yn "Do you want to copy file .config.sh into instance?" Yn; then
|
|
|
|
return 42
|
|
|
|
fi
|
|
|
|
backup_file "${SEARX_SRC}/.config.sh"
|
|
|
|
cp "${REPO_ROOT}/.config.sh" "${SEARX_SRC}/.config.sh"
|
|
|
|
}
|
|
|
|
|
2020-02-17 17:58:59 +00:00
|
|
|
install_settings() {
|
2021-10-02 15:18:05 +00:00
|
|
|
rst_title "${SEARXNG_SETTINGS_PATH}" section
|
2021-06-29 19:36:32 +00:00
|
|
|
|
2020-02-17 17:58:59 +00:00
|
|
|
if ! clone_is_available; then
|
2021-07-12 13:31:42 +00:00
|
|
|
err_msg "you have to install SearXNG first"
|
2020-02-17 17:58:59 +00:00
|
|
|
exit 42
|
|
|
|
fi
|
|
|
|
|
2021-10-02 15:18:05 +00:00
|
|
|
mkdir -p "$(dirname "${SEARXNG_SETTINGS_PATH}")"
|
2021-08-20 12:21:54 +00:00
|
|
|
install_template --no-eval \
|
2021-10-02 15:18:05 +00:00
|
|
|
"${SEARXNG_SETTINGS_PATH}" \
|
2021-06-29 19:36:32 +00:00
|
|
|
"${SERVICE_USER}" "${SERVICE_GROUP}"
|
|
|
|
configure_searx
|
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-16 13:01:38 +00:00
|
|
|
remove_searx() {
|
|
|
|
rst_title "Drop searx sources" section
|
2021-07-12 13:31:42 +00:00
|
|
|
if ask_yn "Do you really want to drop SearXNG sources ($SEARX_SRC)?"; then
|
2020-01-16 13:01:38 +00:00
|
|
|
rm -rf "$SEARX_SRC"
|
|
|
|
else
|
2021-07-12 13:31:42 +00:00
|
|
|
rst_para "Leave SearXNG sources unchanged."
|
2020-01-16 13:01:38 +00:00
|
|
|
fi
|
|
|
|
}
|
2020-01-14 18:26:54 +00:00
|
|
|
|
2020-01-20 15:55:05 +00:00
|
|
|
pyenv_is_available() {
|
|
|
|
[[ -f "${SEARX_PYENV}/bin/activate" ]]
|
|
|
|
}
|
|
|
|
|
|
|
|
create_pyenv() {
|
2020-01-16 13:01:38 +00:00
|
|
|
rst_title "Create virtualenv (python)" section
|
2020-01-14 18:26:54 +00:00
|
|
|
echo
|
2021-04-17 16:20:29 +00:00
|
|
|
if [[ ! -f "${SEARX_SRC}/manage" ]]; then
|
2021-07-12 13:31:42 +00:00
|
|
|
err_msg "to create pyenv for SearXNG, SearXNG has to be cloned first"
|
2020-01-16 13:01:38 +00:00
|
|
|
return 42
|
|
|
|
fi
|
|
|
|
info_msg "create pyenv in ${SEARX_PYENV}"
|
2020-01-14 18:26:54 +00:00
|
|
|
tee_stderr 0.1 <<EOF | sudo -H -u "${SERVICE_USER}" -i 2>&1 | prefix_stdout "$_service_prefix"
|
2020-01-16 13:01:38 +00:00
|
|
|
rm -rf "${SEARX_PYENV}"
|
|
|
|
python3 -m venv "${SEARX_PYENV}"
|
|
|
|
grep -qFs -- 'source ${SEARX_PYENV}/bin/activate' ~/.profile \
|
|
|
|
|| echo 'source ${SEARX_PYENV}/bin/activate' >> ~/.profile
|
|
|
|
EOF
|
|
|
|
info_msg "inspect python's virtual environment"
|
|
|
|
tee_stderr 0.1 <<EOF | sudo -H -u "${SERVICE_USER}" -i 2>&1 | prefix_stdout "$_service_prefix"
|
|
|
|
command -v python && python --version
|
2020-01-14 18:26:54 +00:00
|
|
|
EOF
|
2020-01-16 13:01:38 +00:00
|
|
|
wait_key
|
|
|
|
info_msg "install needed python packages"
|
2020-01-14 18:26:54 +00:00
|
|
|
tee_stderr 0.1 <<EOF | sudo -H -u "${SERVICE_USER}" -i 2>&1 | prefix_stdout "$_service_prefix"
|
2020-05-21 13:46:43 +00:00
|
|
|
pip install -U pip
|
|
|
|
pip install -U setuptools
|
|
|
|
pip install -U wheel
|
[fix] setup.py requires pyyaml installed
pip install -e .
...
Obtaining file:///usr/local/searx/searx-src
ERROR: Command errored out with exit status 1:
command: /usr/local/searx/searx-pyenv/bin/python3 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/usr/local/searx/searx-src/setup.py'"'"'; __file__='"'"'/usr/local/searx/searx-src/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'rn'"'"', '"'"'n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /tmp/pip-pip-egg-info-vzer91m2
cwd: /usr/local/searx/searx-src/
Complete output (9 lines):
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/usr/local/searx/searx-src/setup.py", line 10, in <module>
from searx.version import VERSION_STRING
File "/usr/local/searx/searx-src/searx/__init__.py", line 19, in <module>
import searx.settings_loader
File "/usr/local/searx/searx-src/searx/settings_loader.py", line 8, in <module>
import yaml
ModuleNotFoundError: No module named 'yaml'
----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-01-16 07:58:13 +00:00
|
|
|
pip install -U pyyaml
|
2020-05-21 13:46:43 +00:00
|
|
|
cd ${SEARX_SRC}
|
|
|
|
pip install -e .
|
2020-01-14 18:26:54 +00:00
|
|
|
EOF
|
2020-01-16 13:01:38 +00:00
|
|
|
}
|
2020-01-14 18:26:54 +00:00
|
|
|
|
2020-01-20 15:55:05 +00:00
|
|
|
remove_pyenv() {
|
2020-01-16 13:01:38 +00:00
|
|
|
rst_title "Remove virtualenv (python)" section
|
|
|
|
if ! ask_yn "Do you really want to drop ${SEARX_PYENV} ?"; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
info_msg "remove pyenv activation from ~/.profile"
|
|
|
|
tee_stderr 0.1 <<EOF | sudo -H -u "${SERVICE_USER}" -i 2>&1 | prefix_stdout "$_service_prefix"
|
|
|
|
grep -v 'source ${SEARX_PYENV}/bin/activate' ~/.profile > ~/.profile.##
|
|
|
|
mv ~/.profile.## ~/.profile
|
|
|
|
EOF
|
|
|
|
rm -rf "${SEARX_PYENV}"
|
2020-01-14 18:26:54 +00:00
|
|
|
}
|
|
|
|
|
2020-01-20 15:55:05 +00:00
|
|
|
configure_searx() {
|
2021-07-12 13:31:42 +00:00
|
|
|
rst_title "Configure SearXNG" section
|
2021-10-02 15:18:05 +00:00
|
|
|
rst_para "Setup SearXNG config located at $SEARXNG_SETTINGS_PATH"
|
2020-01-14 18:26:54 +00:00
|
|
|
echo
|
2020-02-17 17:58:59 +00:00
|
|
|
tee_stderr 0.1 <<EOF | sudo -H -i 2>&1 | prefix_stdout "$_service_prefix"
|
2020-01-14 18:26:54 +00:00
|
|
|
cd ${SEARX_SRC}
|
2021-10-02 15:18:05 +00:00
|
|
|
sed -i -e "s/ultrasecretkey/$(openssl rand -hex 16)/g" "$SEARXNG_SETTINGS_PATH"
|
2020-01-14 18:26:54 +00:00
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2020-01-20 15:55:05 +00:00
|
|
|
test_local_searx() {
|
2021-07-12 13:31:42 +00:00
|
|
|
rst_title "Testing SearXNG instance localy" section
|
2020-01-14 18:26:54 +00:00
|
|
|
echo
|
2020-01-27 18:08:40 +00:00
|
|
|
|
2020-04-05 15:40:37 +00:00
|
|
|
if service_is_available "http://${SEARX_INTERNAL_HTTP}" &>/dev/null; then
|
|
|
|
err_msg "URL/port http://${SEARX_INTERNAL_HTTP} is already in use, you"
|
2020-01-27 18:08:40 +00:00
|
|
|
err_msg "should stop that service before starting local tests!"
|
|
|
|
if ! ask_yn "Continue with local tests?"; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
fi
|
2021-10-02 15:18:05 +00:00
|
|
|
sed -i -e "s/debug: false/debug: true/g" "$SEARXNG_SETTINGS_PATH"
|
2020-01-14 18:26:54 +00:00
|
|
|
tee_stderr 0.1 <<EOF | sudo -H -u "${SERVICE_USER}" -i 2>&1 | prefix_stdout "$_service_prefix"
|
2021-10-02 15:18:05 +00:00
|
|
|
export SEARXNG_SETTINGS_PATH="${SEARXNG_SETTINGS_PATH}"
|
2020-01-14 18:26:54 +00:00
|
|
|
cd ${SEARX_SRC}
|
2020-03-02 18:00:19 +00:00
|
|
|
timeout 10 python searx/webapp.py &
|
2020-02-04 18:47:33 +00:00
|
|
|
sleep 3
|
2020-04-05 15:40:37 +00:00
|
|
|
curl --location --verbose --head --insecure $SEARX_INTERNAL_HTTP
|
2020-01-14 18:26:54 +00:00
|
|
|
EOF
|
2021-10-02 15:18:05 +00:00
|
|
|
sed -i -e "s/debug: true/debug: false/g" "$SEARXNG_SETTINGS_PATH"
|
2020-01-14 18:26:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
install_searx_uwsgi() {
|
2021-07-12 13:31:42 +00:00
|
|
|
rst_title "Install SearXNG's uWSGI app (searx.ini)" section
|
2020-01-14 18:26:54 +00:00
|
|
|
echo
|
2020-04-13 09:34:28 +00:00
|
|
|
install_uwsgi
|
2020-01-14 18:26:54 +00:00
|
|
|
uWSGI_install_app "$SEARX_UWSGI_APP"
|
|
|
|
}
|
|
|
|
|
|
|
|
remove_searx_uwsgi() {
|
2021-07-12 13:31:42 +00:00
|
|
|
rst_title "Remove SearXNG's uWSGI app (searx.ini)" section
|
2020-01-14 18:26:54 +00:00
|
|
|
echo
|
|
|
|
uWSGI_remove_app "$SEARX_UWSGI_APP"
|
|
|
|
}
|
|
|
|
|
2020-01-20 15:55:05 +00:00
|
|
|
activate_service() {
|
2021-06-29 17:01:07 +00:00
|
|
|
rst_title "Activate SearXNG (service)" section
|
2020-01-20 15:55:05 +00:00
|
|
|
echo
|
2020-01-14 18:26:54 +00:00
|
|
|
uWSGI_enable_app "$SEARX_UWSGI_APP"
|
2020-02-23 20:05:22 +00:00
|
|
|
uWSGI_restart "$SEARX_UWSGI_APP"
|
2020-01-14 18:26:54 +00:00
|
|
|
}
|
|
|
|
|
2020-01-20 15:55:05 +00:00
|
|
|
deactivate_service() {
|
2021-06-29 17:01:07 +00:00
|
|
|
rst_title "De-Activate SearXNG (service)" section
|
2020-01-20 15:55:05 +00:00
|
|
|
echo
|
2020-01-14 18:26:54 +00:00
|
|
|
uWSGI_disable_app "$SEARX_UWSGI_APP"
|
2020-02-23 20:05:22 +00:00
|
|
|
uWSGI_restart "$SEARX_UWSGI_APP"
|
2020-01-14 18:26:54 +00:00
|
|
|
}
|
|
|
|
|
2020-04-04 15:54:20 +00:00
|
|
|
enable_image_proxy() {
|
|
|
|
info_msg "try to enable image_proxy ..."
|
|
|
|
tee_stderr 0.1 <<EOF | sudo -H -i 2>&1 | prefix_stdout "$_service_prefix"
|
|
|
|
cd ${SEARX_SRC}
|
2021-10-02 15:18:05 +00:00
|
|
|
sed -i -e "s/image_proxy: false/image_proxy: true/g" "$SEARXNG_SETTINGS_PATH"
|
2020-04-04 15:54:20 +00:00
|
|
|
EOF
|
|
|
|
uWSGI_restart "$SEARX_UWSGI_APP"
|
|
|
|
}
|
|
|
|
|
|
|
|
disable_image_proxy() {
|
|
|
|
info_msg "try to enable image_proxy ..."
|
|
|
|
tee_stderr 0.1 <<EOF | sudo -H -i 2>&1 | prefix_stdout "$_service_prefix"
|
|
|
|
cd ${SEARX_SRC}
|
2021-10-02 15:18:05 +00:00
|
|
|
sed -i -e "s/image_proxy: true/image_proxy: false/g" "$SEARXNG_SETTINGS_PATH"
|
2020-04-04 15:54:20 +00:00
|
|
|
EOF
|
|
|
|
uWSGI_restart "$SEARX_UWSGI_APP"
|
|
|
|
}
|
|
|
|
|
2020-01-20 15:55:05 +00:00
|
|
|
enable_debug() {
|
2021-06-29 17:01:07 +00:00
|
|
|
warn_msg "Do not enable debug in production environments!!"
|
2020-01-20 15:55:05 +00:00
|
|
|
info_msg "try to enable debug mode ..."
|
2020-02-17 17:58:59 +00:00
|
|
|
tee_stderr 0.1 <<EOF | sudo -H -i 2>&1 | prefix_stdout "$_service_prefix"
|
2020-01-20 15:55:05 +00:00
|
|
|
cd ${SEARX_SRC}
|
2021-10-02 15:18:05 +00:00
|
|
|
sed -i -e "s/debug: false/debug: true/g" "$SEARXNG_SETTINGS_PATH"
|
2020-01-20 15:55:05 +00:00
|
|
|
EOF
|
2020-02-23 20:05:22 +00:00
|
|
|
uWSGI_restart "$SEARX_UWSGI_APP"
|
2020-01-20 15:55:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
disable_debug() {
|
|
|
|
info_msg "try to disable debug mode ..."
|
2020-02-17 17:58:59 +00:00
|
|
|
tee_stderr 0.1 <<EOF | sudo -H -i 2>&1 | prefix_stdout "$_service_prefix"
|
2020-01-20 15:55:05 +00:00
|
|
|
cd ${SEARX_SRC}
|
2021-10-02 15:18:05 +00:00
|
|
|
sed -i -e "s/debug: true/debug: false/g" "$SEARXNG_SETTINGS_PATH"
|
2020-01-20 15:55:05 +00:00
|
|
|
EOF
|
2020-02-23 20:05:22 +00:00
|
|
|
uWSGI_restart "$SEARX_UWSGI_APP"
|
2020-01-20 15:55:05 +00:00
|
|
|
}
|
|
|
|
|
2020-04-04 15:54:20 +00:00
|
|
|
set_result_proxy() {
|
2020-04-13 09:34:28 +00:00
|
|
|
|
|
|
|
# usage: set_result_proxy <URL> [<key>]
|
|
|
|
|
2020-04-28 14:21:45 +00:00
|
|
|
info_msg "try to set result proxy: '$1' ($2)"
|
2021-10-02 15:18:05 +00:00
|
|
|
cp "${SEARXNG_SETTINGS_PATH}" "${SEARXNG_SETTINGS_PATH}.bak"
|
|
|
|
_set_result_proxy "$1" "$2" > "${SEARXNG_SETTINGS_PATH}"
|
2020-04-04 15:54:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_set_result_proxy() {
|
|
|
|
local line
|
|
|
|
local stage=0
|
|
|
|
local url=" url: $1"
|
2020-04-28 14:21:45 +00:00
|
|
|
local key=" key: !!binary \"$2\""
|
2020-04-04 15:54:20 +00:00
|
|
|
if [[ -z $2 ]]; then
|
|
|
|
key=
|
|
|
|
fi
|
|
|
|
|
|
|
|
while IFS= read -r line
|
|
|
|
do
|
|
|
|
if [[ $stage = 0 ]] || [[ $stage = 2 ]] ; then
|
|
|
|
if [[ $line =~ ^[[:space:]]*#*[[:space:]]*result_proxy[[:space:]]*:[[:space:]]*$ ]]; then
|
|
|
|
if [[ $stage = 0 ]]; then
|
|
|
|
stage=1
|
|
|
|
echo "result_proxy:"
|
|
|
|
continue
|
|
|
|
elif [[ $stage = 2 ]]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [[ $stage = 1 ]] || [[ $stage = 2 ]] ; then
|
|
|
|
if [[ $line =~ ^[[:space:]]*#*[[:space:]]*url[[:space:]]*:[[:space:]] ]]; then
|
|
|
|
[[ $stage = 1 ]] && echo "$url"
|
|
|
|
continue
|
|
|
|
elif [[ $line =~ ^[[:space:]]*#*[[:space:]]*key[[:space:]]*:[[:space:]] ]]; then
|
|
|
|
[[ $stage = 1 ]] && [[ -n $key ]] && echo "$key"
|
|
|
|
continue
|
|
|
|
elif [[ $line =~ ^[[:space:]]*$ ]]; then
|
|
|
|
stage=2
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "$line"
|
2021-10-02 15:18:05 +00:00
|
|
|
done < "${SEARXNG_SETTINGS_PATH}.bak"
|
2020-04-04 15:54:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function has_substring() {
|
|
|
|
[[ "$1" != "${2/$1/}" ]]
|
|
|
|
}
|
2020-01-27 18:08:40 +00:00
|
|
|
inspect_service() {
|
2020-01-14 18:26:54 +00:00
|
|
|
rst_title "service status & log"
|
2020-01-29 19:00:50 +00:00
|
|
|
cat <<EOF
|
|
|
|
|
2021-06-29 17:01:07 +00:00
|
|
|
sourced ${DOT_CONFIG} :
|
|
|
|
SERVICE_USER : ${SERVICE_USER}
|
|
|
|
SERVICE_HOME : ${SERVICE_HOME}
|
2020-01-29 19:00:50 +00:00
|
|
|
EOF
|
2021-06-29 17:01:07 +00:00
|
|
|
install_log_searx_instance
|
2020-01-20 15:55:05 +00:00
|
|
|
|
2020-02-01 15:59:27 +00:00
|
|
|
if service_account_is_available "$SERVICE_USER"; then
|
2020-01-27 18:08:40 +00:00
|
|
|
info_msg "Service account $SERVICE_USER exists."
|
2020-01-20 15:55:05 +00:00
|
|
|
else
|
2020-01-27 18:08:40 +00:00
|
|
|
err_msg "Service account $SERVICE_USER does not exists!"
|
2020-01-20 15:55:05 +00:00
|
|
|
fi
|
2020-01-27 18:08:40 +00:00
|
|
|
|
2020-01-20 15:55:05 +00:00
|
|
|
if pyenv_is_available; then
|
2020-01-29 19:00:50 +00:00
|
|
|
info_msg "~$SERVICE_USER: python environment is available."
|
2020-01-20 15:55:05 +00:00
|
|
|
else
|
2020-01-29 19:00:50 +00:00
|
|
|
err_msg "~$SERVICE_USER: python environment is not available!"
|
2020-01-20 15:55:05 +00:00
|
|
|
fi
|
2020-01-27 18:08:40 +00:00
|
|
|
|
2020-01-20 15:55:05 +00:00
|
|
|
if clone_is_available; then
|
2021-07-12 13:31:42 +00:00
|
|
|
info_msg "~$SERVICE_USER: SearXNG software is installed."
|
2020-01-20 15:55:05 +00:00
|
|
|
else
|
2021-07-12 13:31:42 +00:00
|
|
|
err_msg "~$SERVICE_USER: Missing SearXNG software!"
|
2020-01-20 15:55:05 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if uWSGI_app_enabled "$SEARX_UWSGI_APP"; then
|
|
|
|
info_msg "uWSGI app $SEARX_UWSGI_APP is enabled."
|
|
|
|
else
|
|
|
|
err_msg "uWSGI app $SEARX_UWSGI_APP not enabled!"
|
|
|
|
fi
|
|
|
|
|
2020-01-27 18:08:40 +00:00
|
|
|
uWSGI_app_available "$SEARX_UWSGI_APP" \
|
|
|
|
|| err_msg "uWSGI app $SEARX_UWSGI_APP not available!"
|
|
|
|
|
2020-03-07 19:24:08 +00:00
|
|
|
if in_container; then
|
2020-03-08 01:41:45 +00:00
|
|
|
lxc_suite_info
|
|
|
|
else
|
|
|
|
info_msg "public URL --> ${PUBLIC_URL}"
|
2020-04-05 15:40:37 +00:00
|
|
|
info_msg "internal URL --> http://${SEARX_INTERNAL_HTTP}"
|
2020-02-27 18:13:03 +00:00
|
|
|
fi
|
|
|
|
|
2020-04-05 15:40:37 +00:00
|
|
|
if ! service_is_available "http://${SEARX_INTERNAL_HTTP}"; then
|
|
|
|
err_msg "uWSGI app (service) at http://${SEARX_INTERNAL_HTTP} is not available!"
|
2020-03-08 01:41:45 +00:00
|
|
|
MSG="${_Green}[${_BCyan}CTRL-C${_Green}] to stop or [${_BCyan}KEY${_Green}] to continue"\
|
|
|
|
wait_key
|
2020-01-27 18:08:40 +00:00
|
|
|
fi
|
|
|
|
|
2020-01-29 19:00:50 +00:00
|
|
|
if ! service_is_available "${PUBLIC_URL}"; then
|
2020-02-17 17:58:59 +00:00
|
|
|
warn_msg "Public service at ${PUBLIC_URL} is not available!"
|
2020-03-08 01:41:45 +00:00
|
|
|
if ! in_container; then
|
2020-02-27 18:13:03 +00:00
|
|
|
warn_msg "Check if public name is correct and routed or use the public IP from above."
|
|
|
|
fi
|
2020-01-27 18:08:40 +00:00
|
|
|
fi
|
|
|
|
|
2020-01-20 15:55:05 +00:00
|
|
|
local _debug_on
|
2021-07-12 13:31:42 +00:00
|
|
|
if ask_yn "Enable SearXNG debug mode?"; then
|
2020-01-20 15:55:05 +00:00
|
|
|
enable_debug
|
|
|
|
_debug_on=1
|
|
|
|
fi
|
2020-01-14 18:26:54 +00:00
|
|
|
echo
|
2020-02-02 17:14:10 +00:00
|
|
|
|
2020-03-08 01:41:45 +00:00
|
|
|
case $DIST_ID-$DIST_VERS in
|
|
|
|
ubuntu-*|debian-*)
|
|
|
|
systemctl --no-pager -l status "${SERVICE_NAME}"
|
|
|
|
;;
|
|
|
|
arch-*)
|
|
|
|
systemctl --no-pager -l status "uwsgi@${SERVICE_NAME%.*}"
|
|
|
|
;;
|
2020-08-01 20:12:44 +00:00
|
|
|
fedora-*|centos-7)
|
2020-03-08 01:41:45 +00:00
|
|
|
systemctl --no-pager -l status uwsgi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2020-02-04 09:39:42 +00:00
|
|
|
# shellcheck disable=SC2059
|
2020-01-31 17:24:31 +00:00
|
|
|
printf "// use ${_BCyan}CTRL-C${_creset} to stop monitoring the log"
|
2020-03-08 01:41:45 +00:00
|
|
|
read -r -s -n1 -t 5
|
2020-01-14 18:26:54 +00:00
|
|
|
echo
|
2020-03-08 01:41:45 +00:00
|
|
|
|
2020-01-14 18:26:54 +00:00
|
|
|
while true; do
|
|
|
|
trap break 2
|
2020-03-08 01:41:45 +00:00
|
|
|
case $DIST_ID-$DIST_VERS in
|
|
|
|
ubuntu-*|debian-*) tail -f /var/log/uwsgi/app/searx.log ;;
|
|
|
|
arch-*) journalctl -f -u "uwsgi@${SERVICE_NAME%.*}" ;;
|
2020-08-01 20:12:44 +00:00
|
|
|
fedora-*|centos-7) journalctl -f -u uwsgi ;;
|
2020-03-08 01:41:45 +00:00
|
|
|
esac
|
2020-01-14 18:26:54 +00:00
|
|
|
done
|
2020-01-20 15:55:05 +00:00
|
|
|
|
|
|
|
if [[ $_debug_on == 1 ]]; then
|
|
|
|
disable_debug
|
|
|
|
fi
|
2020-01-14 18:26:54 +00:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2020-01-20 18:08:56 +00:00
|
|
|
install_apache_site() {
|
2020-01-29 19:00:50 +00:00
|
|
|
rst_title "Install Apache site $APACHE_SEARX_SITE"
|
2020-01-21 17:38:57 +00:00
|
|
|
|
|
|
|
rst_para "\
|
2021-07-12 13:31:42 +00:00
|
|
|
This installs the SearXNG uwsgi app as apache site. If your server is public to
|
2020-04-05 15:40:37 +00:00
|
|
|
the internet, you should instead use a reverse proxy (filtron) to block
|
2020-01-21 17:38:57 +00:00
|
|
|
excessively bot queries."
|
|
|
|
|
|
|
|
! apache_is_installed && err_msg "Apache is not installed."
|
|
|
|
|
2020-04-07 16:31:51 +00:00
|
|
|
if ! ask_yn "Do you really want to continue?" Yn; then
|
2020-01-21 17:38:57 +00:00
|
|
|
return
|
2020-04-07 16:31:51 +00:00
|
|
|
else
|
|
|
|
install_apache
|
2020-01-21 17:38:57 +00:00
|
|
|
fi
|
2020-01-27 18:08:40 +00:00
|
|
|
|
2020-01-29 19:00:50 +00:00
|
|
|
apache_install_site --variant=uwsgi "${APACHE_SEARX_SITE}"
|
2020-01-27 18:08:40 +00:00
|
|
|
|
2021-07-12 13:31:42 +00:00
|
|
|
rst_title "Install SearXNG's uWSGI app (searx.ini)" section
|
2020-04-08 16:38:36 +00:00
|
|
|
echo
|
|
|
|
uWSGI_install_app --variant=socket "$SEARX_UWSGI_APP"
|
|
|
|
|
2020-01-29 19:00:50 +00:00
|
|
|
if ! service_is_available "${PUBLIC_URL}"; then
|
|
|
|
err_msg "Public service at ${PUBLIC_URL} is not available!"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
remove_apache_site() {
|
|
|
|
|
|
|
|
rst_title "Remove Apache site ${APACHE_SEARX_SITE}"
|
|
|
|
|
|
|
|
rst_para "\
|
|
|
|
This removes apache site ${APACHE_SEARX_SITE}."
|
|
|
|
|
|
|
|
! apache_is_installed && err_msg "Apache is not installed."
|
|
|
|
|
2020-04-08 16:38:36 +00:00
|
|
|
if ! ask_yn "Do you really want to continue?" Yn; then
|
2020-01-29 19:00:50 +00:00
|
|
|
return
|
2020-01-27 18:08:40 +00:00
|
|
|
fi
|
2020-01-29 19:00:50 +00:00
|
|
|
|
|
|
|
apache_remove_site "${APACHE_SEARX_SITE}"
|
2020-04-08 16:38:36 +00:00
|
|
|
|
2021-07-12 13:31:42 +00:00
|
|
|
rst_title "Remove SearXNG's uWSGI app (searx.ini)" section
|
2020-04-08 16:38:36 +00:00
|
|
|
echo
|
|
|
|
uWSGI_remove_app "$SEARX_UWSGI_APP"
|
2020-01-20 18:08:56 +00:00
|
|
|
}
|
|
|
|
|
2020-03-02 18:00:19 +00:00
|
|
|
rst-doc() {
|
|
|
|
local debian="${SEARX_PACKAGES_debian}"
|
|
|
|
local arch="${SEARX_PACKAGES_arch}"
|
|
|
|
local fedora="${SEARX_PACKAGES_fedora}"
|
2020-08-01 20:12:44 +00:00
|
|
|
local centos="${SEARX_PACKAGES_centos}"
|
2020-03-31 16:25:40 +00:00
|
|
|
local debian_build="${BUILD_PACKAGES_debian}"
|
|
|
|
local arch_build="${BUILD_PACKAGES_arch}"
|
|
|
|
local fedora_build="${BUILD_PACKAGES_fedora}"
|
2020-08-01 20:12:44 +00:00
|
|
|
local centos_build="${SEARX_PACKAGES_centos}"
|
2020-03-02 18:00:19 +00:00
|
|
|
debian="$(echo "${debian}" | sed 's/.*/ & \\/' | sed '$ s/.$//')"
|
|
|
|
arch="$(echo "${arch}" | sed 's/.*/ & \\/' | sed '$ s/.$//')"
|
|
|
|
fedora="$(echo "${fedora}" | sed 's/.*/ & \\/' | sed '$ s/.$//')"
|
2020-08-01 20:12:44 +00:00
|
|
|
centos="$(echo "${centos}" | sed 's/.*/ & \\/' | sed '$ s/.$//')"
|
2020-03-31 16:25:40 +00:00
|
|
|
debian_build="$(echo "${debian_build}" | sed 's/.*/ & \\/' | sed '$ s/.$//')"
|
|
|
|
arch_build="$(echo "${arch_build}" | sed 's/.*/ & \\/' | sed '$ s/.$//')"
|
|
|
|
fedora_build="$(echo "${fedora_build}" | sed 's/.*/ & \\/' | sed '$ s/.$//')"
|
2020-08-01 20:12:44 +00:00
|
|
|
centos_build="$(echo "${centos_build}" | sed 's/.*/ & \\/' | sed '$ s/.$//')"
|
2020-03-02 18:00:19 +00:00
|
|
|
|
2020-03-04 11:22:20 +00:00
|
|
|
eval "echo \"$(< "${REPO_ROOT}/docs/build-templates/searx.rst")\""
|
2020-03-02 18:00:19 +00:00
|
|
|
|
2020-03-03 18:57:15 +00:00
|
|
|
# I use ubuntu-20.04 here to demonstrate that versions are also suported,
|
|
|
|
# normaly debian-* and ubuntu-* are most the same.
|
|
|
|
|
2020-09-20 09:11:14 +00:00
|
|
|
for DIST_NAME in ubuntu-20.04 arch fedora; do
|
2020-03-03 18:57:15 +00:00
|
|
|
(
|
|
|
|
DIST_ID=${DIST_NAME%-*}
|
|
|
|
DIST_VERS=${DIST_NAME#*-}
|
|
|
|
[[ $DIST_VERS =~ $DIST_ID ]] && DIST_VERS=
|
|
|
|
uWSGI_distro_setup
|
|
|
|
|
|
|
|
echo -e "\n.. START searx uwsgi-description $DIST_NAME"
|
2020-03-04 11:22:20 +00:00
|
|
|
|
2020-03-03 18:57:15 +00:00
|
|
|
case $DIST_ID-$DIST_VERS in
|
2020-03-04 11:22:20 +00:00
|
|
|
ubuntu-*|debian-*) cat <<EOF
|
2020-06-24 13:15:15 +00:00
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
# init.d --> /usr/share/doc/uwsgi/README.Debian.gz
|
|
|
|
# For uWSGI debian uses the LSB init process, this might be changed
|
|
|
|
# one day, see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=833067
|
|
|
|
|
|
|
|
create ${uWSGI_APPS_AVAILABLE}/${SEARX_UWSGI_APP}
|
|
|
|
enable: sudo -H ln -s ${uWSGI_APPS_AVAILABLE}/${SEARX_UWSGI_APP} ${uWSGI_APPS_ENABLED}/
|
|
|
|
start: sudo -H service uwsgi start ${SEARX_UWSGI_APP%.*}
|
|
|
|
restart: sudo -H service uwsgi restart ${SEARX_UWSGI_APP%.*}
|
|
|
|
stop: sudo -H service uwsgi stop ${SEARX_UWSGI_APP%.*}
|
|
|
|
disable: sudo -H rm ${uWSGI_APPS_ENABLED}/${SEARX_UWSGI_APP}
|
|
|
|
|
2020-03-04 11:22:20 +00:00
|
|
|
EOF
|
|
|
|
;;
|
|
|
|
arch-*) cat <<EOF
|
2020-06-24 13:15:15 +00:00
|
|
|
|
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
# systemd --> /usr/lib/systemd/system/uwsgi@.service
|
|
|
|
# For uWSGI archlinux uses systemd template units, see
|
|
|
|
# - http://0pointer.de/blog/projects/instances.html
|
|
|
|
# - https://uwsgi-docs.readthedocs.io/en/latest/Systemd.html#one-service-per-app-in-systemd
|
|
|
|
|
|
|
|
create: ${uWSGI_APPS_ENABLED}/${SEARX_UWSGI_APP}
|
|
|
|
enable: sudo -H systemctl enable uwsgi@${SEARX_UWSGI_APP%.*}
|
|
|
|
start: sudo -H systemctl start uwsgi@${SEARX_UWSGI_APP%.*}
|
|
|
|
restart: sudo -H systemctl restart uwsgi@${SEARX_UWSGI_APP%.*}
|
|
|
|
stop: sudo -H systemctl stop uwsgi@${SEARX_UWSGI_APP%.*}
|
|
|
|
disable: sudo -H systemctl disable uwsgi@${SEARX_UWSGI_APP%.*}
|
|
|
|
|
2020-03-04 11:22:20 +00:00
|
|
|
EOF
|
|
|
|
;;
|
2020-08-01 20:12:44 +00:00
|
|
|
fedora-*|centos-7) cat <<EOF
|
2020-03-04 11:22:20 +00:00
|
|
|
|
2020-06-24 13:15:15 +00:00
|
|
|
.. code:: bash
|
|
|
|
|
|
|
|
# systemd --> /usr/lib/systemd/system/uwsgi.service
|
|
|
|
# The unit file starts uWSGI in emperor mode (/etc/uwsgi.ini), see
|
|
|
|
# - https://uwsgi-docs.readthedocs.io/en/latest/Emperor.html
|
|
|
|
|
|
|
|
create: ${uWSGI_APPS_ENABLED}/${SEARX_UWSGI_APP}
|
|
|
|
restart: sudo -H touch ${uWSGI_APPS_ENABLED}/${SEARX_UWSGI_APP}
|
|
|
|
disable: sudo -H rm ${uWSGI_APPS_ENABLED}/${SEARX_UWSGI_APP}
|
|
|
|
|
2020-03-04 11:22:20 +00:00
|
|
|
EOF
|
|
|
|
;;
|
2020-03-03 18:57:15 +00:00
|
|
|
esac
|
|
|
|
echo -e ".. END searx uwsgi-description $DIST_NAME"
|
|
|
|
|
|
|
|
echo -e "\n.. START searx uwsgi-appini $DIST_NAME"
|
2020-06-24 13:15:15 +00:00
|
|
|
echo ".. code:: bash"
|
|
|
|
echo
|
|
|
|
eval "echo \"$(< "${TEMPLATES}/${uWSGI_APPS_AVAILABLE}/${SEARX_UWSGI_APP}")\"" | prefix_stdout " "
|
2020-03-03 18:57:15 +00:00
|
|
|
echo -e "\n.. END searx uwsgi-appini $DIST_NAME"
|
|
|
|
|
|
|
|
)
|
|
|
|
done
|
|
|
|
|
2020-03-02 18:00:19 +00:00
|
|
|
}
|
|
|
|
|
2020-01-14 18:26:54 +00:00
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
main "$@"
|
|
|
|
# ----------------------------------------------------------------------------
|