| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | #!/usr/bin/env bash
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  | # -*- coding: utf-8; mode: sh indent-tabs-mode: nil -*- | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | # shellcheck disable=SC2001 | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # shellcheck source=utils/lib.sh | 
					
						
							|  |  |  | source "$(dirname "${BASH_SOURCE[0]}")/lib.sh" | 
					
						
							| 
									
										
										
										
											2020-03-29 15:09:34 +02:00
										 |  |  | # shellcheck source=utils/brand.env | 
					
						
							|  |  |  | source "${REPO_ROOT}/utils/brand.env" | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | source_dot_config | 
					
						
							| 
									
										
										
										
											2020-03-07 20:24:08 +01:00
										 |  |  | source "${REPO_ROOT}/utils/lxc-searx.env" | 
					
						
							| 
									
										
										
										
											2020-03-08 02:41:45 +01:00
										 |  |  | in_container && lxc_set_suite_env | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # ---------------------------------------------------------------------------- | 
					
						
							|  |  |  | # config | 
					
						
							|  |  |  | # ---------------------------------------------------------------------------- | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-29 15:09:34 +02:00
										 |  |  | PUBLIC_URL="${PUBLIC_URL:-http://$(uname -n)/searx}" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-05 17:40:37 +02:00
										 |  |  | SEARX_INTERNAL_HTTP="${SEARX_INTERNAL_HTTP:-127.0.0.1:8888}" | 
					
						
							| 
									
										
										
										
											2020-02-04 10:39:42 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | SEARX_URL_PATH="${SEARX_URL_PATH:-$(echo "${PUBLIC_URL}" \
 | 
					
						
							|  |  |  | | sed -e 's,^.*://[^/]*\(/.*\),\1,g')}"
 | 
					
						
							|  |  |  | [[ "${SEARX_URL_PATH}" == "${PUBLIC_URL}" ]] && SEARX_URL_PATH=/ | 
					
						
							|  |  |  | SEARX_INSTANCE_NAME="${SEARX_INSTANCE_NAME:-searx@$(echo "$PUBLIC_URL" \
 | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  | | sed -e 's,^.*://\([^\:/]*\).*,\1,g') }"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  | SERVICE_NAME="searx" | 
					
						
							|  |  |  | SERVICE_USER="${SERVICE_USER:-${SERVICE_NAME}}" | 
					
						
							| 
									
										
										
										
											2020-02-04 10:39:42 +01:00
										 |  |  | SERVICE_HOME_BASE="${SERVICE_HOME_BASE:-/usr/local}" | 
					
						
							|  |  |  | SERVICE_HOME="${SERVICE_HOME_BASE}/${SERVICE_USER}" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | # shellcheck disable=SC2034 | 
					
						
							|  |  |  | SERVICE_GROUP="${SERVICE_USER}" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-29 15:09:34 +02:00
										 |  |  | GIT_BRANCH="${GIT_BRANCH:-master}" | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  | SEARX_PYENV="${SERVICE_HOME}/searx-pyenv" | 
					
						
							|  |  |  | SEARX_SRC="${SERVICE_HOME}/searx-src" | 
					
						
							| 
									
										
										
										
											2021-04-08 05:51:50 +02:00
										 |  |  | SEARX_SETTINGS_PATH="${SEARX_SETTINGS_PATH:-/etc/searx/settings.yml}" | 
					
						
							| 
									
										
										
										
											2020-12-23 14:10:07 +01:00
										 |  |  | SEARX_SETTINGS_TEMPLATE="${SEARX_SETTINGS_TEMPLATE:-${REPO_ROOT}/utils/templates/etc/searx/use_default_settings.yml}" | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | SEARX_UWSGI_APP="searx.ini" | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  | # shellcheck disable=SC2034 | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  | SEARX_UWSGI_SOCKET="/run/uwsgi/app/searx/socket" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-02 19:00:19 +01:00
										 |  |  | # apt packages | 
					
						
							|  |  |  | SEARX_PACKAGES_debian="\
 | 
					
						
							| 
									
										
										
										
											2020-12-18 22:31:13 +01:00
										 |  |  | python3-dev python3-babel python3-venv | 
					
						
							| 
									
										
										
										
											2020-03-02 19:00:19 +01:00
										 |  |  | uwsgi uwsgi-plugin-python3 | 
					
						
							| 
									
										
										
										
											2020-03-30 18:47:01 +02:00
										 |  |  | git build-essential libxslt-dev zlib1g-dev libffi-dev libssl-dev | 
					
						
							|  |  |  | shellcheck"
 | 
					
						
							| 
									
										
										
										
											2020-03-09 01:37:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | BUILD_PACKAGES_debian="\
 | 
					
						
							| 
									
										
										
										
											2020-03-31 18:25:40 +02:00
										 |  |  | firefox graphviz imagemagick texlive-xetex librsvg2-bin | 
					
						
							| 
									
										
										
										
											2021-01-02 17:27:16 +01:00
										 |  |  | texlive-latex-recommended texlive-extra-utils fonts-dejavu | 
					
						
							| 
									
										
										
										
											2021-06-18 17:33:56 +02:00
										 |  |  | latexmk | 
					
						
							| 
									
										
										
										
											2021-06-16 19:18:13 +02:00
										 |  |  | npm"
 | 
					
						
							| 
									
										
										
										
											2020-03-02 19:00:19 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # pacman packages | 
					
						
							|  |  |  | SEARX_PACKAGES_arch="\
 | 
					
						
							| 
									
										
										
										
											2020-12-18 22:31:13 +01:00
										 |  |  | python python-pip python-lxml python-babel | 
					
						
							| 
									
										
										
										
											2020-03-02 19:00:19 +01:00
										 |  |  | uwsgi uwsgi-plugin-python | 
					
						
							| 
									
										
										
										
											2020-03-30 18:47:01 +02:00
										 |  |  | git base-devel libxml2 | 
					
						
							|  |  |  | shellcheck"
 | 
					
						
							| 
									
										
										
										
											2020-03-09 01:37:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | BUILD_PACKAGES_arch="\
 | 
					
						
							| 
									
										
										
										
											2020-03-31 18:25:40 +02:00
										 |  |  | firefox graphviz imagemagick texlive-bin extra/librsvg | 
					
						
							| 
									
										
										
										
											2021-06-18 17:33:56 +02:00
										 |  |  | texlive-core texlive-latexextra ttf-dejavu | 
					
						
							| 
									
										
										
										
											2021-06-16 19:18:13 +02:00
										 |  |  | npm"
 | 
					
						
							| 
									
										
										
										
											2020-03-02 19:00:19 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # dnf packages | 
					
						
							|  |  |  | SEARX_PACKAGES_fedora="\
 | 
					
						
							| 
									
										
										
										
											2020-12-18 22:31:13 +01:00
										 |  |  | python python-pip python-lxml python-babel | 
					
						
							| 
									
										
										
										
											2020-03-02 19:00:19 +01:00
										 |  |  | uwsgi uwsgi-plugin-python3 | 
					
						
							| 
									
										
										
										
											2020-03-30 18:47:01 +02:00
										 |  |  | git @development-tools libxml2 | 
					
						
							| 
									
										
										
										
											2021-01-19 21:26:04 +01:00
										 |  |  | ShellCheck"
 | 
					
						
							| 
									
										
										
										
											2020-03-09 01:37:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | BUILD_PACKAGES_fedora="\
 | 
					
						
							| 
									
										
										
										
											2020-03-31 18:25:40 +02:00
										 |  |  | firefox graphviz graphviz-gd ImageMagick librsvg2-tools | 
					
						
							| 
									
										
										
										
											2020-03-09 01:37:26 +01:00
										 |  |  | texlive-xetex-bin texlive-collection-fontsrecommended | 
					
						
							|  |  |  | texlive-collection-latex dejavu-sans-fonts dejavu-serif-fonts | 
					
						
							| 
									
										
										
										
											2021-06-18 17:33:56 +02:00
										 |  |  | dejavu-sans-mono-fonts | 
					
						
							| 
									
										
										
										
											2021-06-16 19:18:13 +02:00
										 |  |  | npm"
 | 
					
						
							| 
									
										
										
										
											2020-03-02 19:00:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  | # yum packages | 
					
						
							| 
									
										
										
										
											2021-06-16 19:18:13 +02: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 22:12:44 +02:00
										 |  |  | SEARX_PACKAGES_centos="\
 | 
					
						
							| 
									
										
										
										
											2020-12-18 22:31:13 +01:00
										 |  |  | python36 python36-pip python36-lxml python-babel | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  | uwsgi uwsgi-plugin-python3 | 
					
						
							|  |  |  | git @development-tools libxml2 | 
					
						
							| 
									
										
										
										
											2021-01-19 21:26:04 +01:00
										 |  |  | ShellCheck"
 | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02: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 19:18:13 +02:00
										 |  |  | dejavu-sans-mono-fonts"
 | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  | case $DIST_ID-$DIST_VERS in | 
					
						
							|  |  |  |     ubuntu-16.04|ubuntu-18.04) | 
					
						
							| 
									
										
										
										
											2020-03-09 01:37:26 +01:00
										 |  |  |         SEARX_PACKAGES="${SEARX_PACKAGES_debian}" | 
					
						
							|  |  |  |         BUILD_PACKAGES="${BUILD_PACKAGES_debian}" | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |         APACHE_PACKAGES="$APACHE_PACKAGES libapache2-mod-proxy-uwsgi" | 
					
						
							| 
									
										
										
										
											2020-03-09 01:37:26 +01:00
										 |  |  |         ;; | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02: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 18:31:51 +02:00
										 |  |  |     ubuntu-*|debian-*) | 
					
						
							|  |  |  |         SEARX_PACKAGES="${SEARX_PACKAGES_debian}" | 
					
						
							|  |  |  |         BUILD_PACKAGES="${BUILD_PACKAGES_debian}" | 
					
						
							|  |  |  |         ;; | 
					
						
							|  |  |  |     arch-*) | 
					
						
							| 
									
										
										
										
											2020-03-09 01:37:26 +01:00
										 |  |  |         SEARX_PACKAGES="${SEARX_PACKAGES_arch}" | 
					
						
							|  |  |  |         BUILD_PACKAGES="${BUILD_PACKAGES_arch}" | 
					
						
							|  |  |  |         ;; | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |     fedora-*) | 
					
						
							| 
									
										
										
										
											2020-03-09 01:37:26 +01:00
										 |  |  |         SEARX_PACKAGES="${SEARX_PACKAGES_fedora}" | 
					
						
							|  |  |  |         BUILD_PACKAGES="${BUILD_PACKAGES_fedora}" | 
					
						
							|  |  |  |         ;; | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |     centos-7) | 
					
						
							|  |  |  |         SEARX_PACKAGES="${SEARX_PACKAGES_centos}" | 
					
						
							|  |  |  |         BUILD_PACKAGES="${BUILD_PACKAGES_centos}" | 
					
						
							|  |  |  |         ;; | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01:00
										 |  |  | esac | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  | # Apache Settings | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | APACHE_SEARX_SITE="searx.conf" | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | # shellcheck disable=SC2034 | 
					
						
							|  |  |  | CONFIG_FILES=( | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |     "${uWSGI_APPS_AVAILABLE}/${SEARX_UWSGI_APP}" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # shellcheck disable=SC2034 | 
					
						
							|  |  |  | CONFIG_BACKUP_ENCRYPTED=( | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |     "${SEARX_SETTINGS_PATH}" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # ---------------------------------------------------------------------------- | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | usage() { | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | # ---------------------------------------------------------------------------- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # shellcheck disable=SC1117 | 
					
						
							|  |  |  |     cat <<EOF | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  | usage:: | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |   $(basename "$0") shell | 
					
						
							| 
									
										
										
										
											2020-12-08 20:19:10 +01:00
										 |  |  |   $(basename "$0") install    [all|user|searx-src|pyenv|uwsgi|packages|settings|buildhost] | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |   $(basename "$0") update     [searx] | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  |   $(basename "$0") remove     [all|user|pyenv|searx-src] | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |   $(basename "$0") activate   [service] | 
					
						
							|  |  |  |   $(basename "$0") deactivate [service] | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  |   $(basename "$0") inspect    [service] | 
					
						
							| 
									
										
										
										
											2020-04-05 17:40:37 +02:00
										 |  |  |   $(basename "$0") option     [debug-[on|off]|image-proxy-[on|off]|result-proxy <url> <key>] | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |   $(basename "$0") apache     [install|remove] | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | shell | 
					
						
							|  |  |  |   start interactive shell from user ${SERVICE_USER} | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  | install / remove | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  |   :all:        complete (de-) installation of searx service | 
					
						
							| 
									
										
										
										
											2020-02-04 10:39:42 +01:00
										 |  |  |   :user:       add/remove service user '$SERVICE_USER' ($SERVICE_HOME) | 
					
						
							| 
									
										
										
										
											2020-03-29 15:09:34 +02:00
										 |  |  |   :searx-src:  clone $GIT_URL | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  |   :pyenv:      create/remove virtualenv (python) in $SEARX_PYENV | 
					
						
							| 
									
										
										
										
											2020-03-06 14:47:00 +01:00
										 |  |  |   :uwsgi:      install searx uWSGI application | 
					
						
							| 
									
										
										
										
											2020-12-23 14:10:07 +01:00
										 |  |  |   :settings:   reinstall settings from ${SEARX_SETTINGS_TEMPLATE} | 
					
						
							| 
									
										
										
										
											2020-03-08 18:32:30 +01:00
										 |  |  |   :packages:   install needed packages from OS package manager | 
					
						
							| 
									
										
										
										
											2020-03-31 18:25:40 +02:00
										 |  |  |   :buildhost:  install packages from OS package manager needed by buildhosts | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | update searx | 
					
						
							| 
									
										
										
										
											2020-02-04 10:39:42 +01:00
										 |  |  |   Update searx installation ($SERVICE_HOME) | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | activate service | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |   activate and start service daemon (systemd unit) | 
					
						
							|  |  |  | deactivate service | 
					
						
							|  |  |  |   stop and deactivate service daemon (systemd unit) | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  | inspect service | 
					
						
							|  |  |  |   run some small tests and inspect service's status and log | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | option | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |   set one of the available options | 
					
						
							|  |  |  | apache | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  |   :install: apache site with the searx uwsgi app | 
					
						
							|  |  |  |   :remove:  apache site ${APACHE_FILTRON_SITE} | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  | searx settings: ${SEARX_SETTINGS_PATH} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  | If needed, set PUBLIC_URL of your WEB service in the '${DOT_CONFIG#"$REPO_ROOT/"}' file:: | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |   PUBLIC_URL          : ${PUBLIC_URL} | 
					
						
							|  |  |  |   SEARX_INSTANCE_NAME : ${SEARX_INSTANCE_NAME} | 
					
						
							| 
									
										
										
										
											2020-02-03 13:25:51 +01:00
										 |  |  |   SERVICE_USER        : ${SERVICE_USER} | 
					
						
							| 
									
										
										
										
											2020-04-05 17:40:37 +02:00
										 |  |  |   SEARX_INTERNAL_HTTP : http://${SEARX_INTERNAL_HTTP} | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | EOF | 
					
						
							| 
									
										
										
										
											2020-04-05 17:40:37 +02:00
										 |  |  |     if in_container; then | 
					
						
							|  |  |  |         # searx is listening on 127.0.0.1 and not available from outside container | 
					
						
							|  |  |  |         # in containers the service is listening on 0.0.0.0 (see lxc-searx.env) | 
					
						
							|  |  |  |         echo -e "${_BBlack}HINT:${_creset} searx only listen on loopback device" \
 | 
					
						
							|  |  |  |              "${_BBlack}inside${_creset} the container." | 
					
						
							|  |  |  |         for ip in $(global_IPs) ; do | 
					
						
							|  |  |  |             if [[ $ip =~ .*:.* ]]; then | 
					
						
							|  |  |  |                 echo "  container (IPv6): [${ip#*|}]" | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 # IPv4: | 
					
						
							|  |  |  |                 echo "  container (IPv4): ${ip#*|}" | 
					
						
							|  |  |  |             fi | 
					
						
							|  |  |  |         done | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-02-16 20:07:37 +01:00
										 |  |  |     [[ -n ${1} ]] &&  err_msg "$1" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | main() { | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |     required_commands \
 | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01:00
										 |  |  |         sudo systemctl install git wget curl \
 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         || exit | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-04 17:59:58 +01:00
										 |  |  |     local _usage="unknown or missing $1 command $2" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     case $1 in | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  |         --getenv)  var="$2"; echo "${!var}"; exit 0;; | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |         -h|--help) usage; exit 0;; | 
					
						
							|  |  |  |         shell) | 
					
						
							|  |  |  |             sudo_or_exit | 
					
						
							| 
									
										
										
										
											2020-02-01 16:59:27 +01:00
										 |  |  |             interactive_shell "${SERVICE_USER}" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  |         inspect) | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |             case $2 in | 
					
						
							|  |  |  |                 service) | 
					
						
							|  |  |  |                     sudo_or_exit | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  |                     inspect_service | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |                     ;; | 
					
						
							|  |  |  |                 *) usage "$_usage"; exit 42;; | 
					
						
							|  |  |  |             esac ;; | 
					
						
							|  |  |  |         install) | 
					
						
							| 
									
										
										
										
											2020-04-11 13:19:11 +02:00
										 |  |  |             rst_title "$SEARX_INSTANCE_NAME" part | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |             sudo_or_exit | 
					
						
							|  |  |  |             case $2 in | 
					
						
							|  |  |  |                 all) install_all ;; | 
					
						
							|  |  |  |                 user) assert_user ;; | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  |                 pyenv) create_pyenv ;; | 
					
						
							|  |  |  |                 searx-src) clone_searx ;; | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |                 settings) install_settings ;; | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  |                 uwsgi) | 
					
						
							|  |  |  |                     install_searx_uwsgi | 
					
						
							|  |  |  |                     if ! service_is_available "http://${SEARX_INTERNAL_HTTP}"; then | 
					
						
							|  |  |  |                         err_msg "URL http://${SEARX_INTERNAL_HTTP} not available, check searx & uwsgi setup!" | 
					
						
							|  |  |  |                     fi | 
					
						
							|  |  |  |                     ;; | 
					
						
							| 
									
										
										
										
											2020-03-09 01:37:26 +01:00
										 |  |  |                 packages) | 
					
						
							|  |  |  |                     pkg_install "$SEARX_PACKAGES" | 
					
						
							|  |  |  |                     ;; | 
					
						
							|  |  |  |                 buildhost) | 
					
						
							|  |  |  |                     pkg_install "$SEARX_PACKAGES" | 
					
						
							|  |  |  |                     pkg_install "$BUILD_PACKAGES" | 
					
						
							|  |  |  |                     ;; | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |                 *) usage "$_usage"; exit 42;; | 
					
						
							|  |  |  |             esac ;; | 
					
						
							|  |  |  |         update) | 
					
						
							|  |  |  |             sudo_or_exit | 
					
						
							|  |  |  |             case $2 in | 
					
						
							|  |  |  |                 searx) update_searx;; | 
					
						
							|  |  |  |                 *) usage "$_usage"; exit 42;; | 
					
						
							|  |  |  |             esac ;; | 
					
						
							|  |  |  |         remove) | 
					
						
							|  |  |  |             sudo_or_exit | 
					
						
							|  |  |  |             case $2 in | 
					
						
							|  |  |  |                 all) remove_all;; | 
					
						
							| 
									
										
										
										
											2020-02-01 16:59:27 +01:00
										 |  |  |                 user) drop_service_account "${SERVICE_USER}";; | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  |                 pyenv) remove_pyenv ;; | 
					
						
							|  |  |  |                 searx-src) remove_searx ;; | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |                 *) usage "$_usage"; exit 42;; | 
					
						
							|  |  |  |             esac ;; | 
					
						
							|  |  |  |         activate) | 
					
						
							|  |  |  |             sudo_or_exit | 
					
						
							|  |  |  |             case $2 in | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |                 service) | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |                     activate_service ;; | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |                 *) usage "$_usage"; exit 42;; | 
					
						
							|  |  |  |             esac ;; | 
					
						
							|  |  |  |         deactivate) | 
					
						
							|  |  |  |             sudo_or_exit | 
					
						
							|  |  |  |             case $2 in | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |                 service)  deactivate_service ;; | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01: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 17:54:20 +02:00
										 |  |  |                 result-proxy) set_result_proxy "$3" "$4" ;; | 
					
						
							|  |  |  |                 image-proxy-on) enable_image_proxy ;; | 
					
						
							|  |  |  |                 image-proxy-off) disable_image_proxy ;; | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |                 *) usage "$_usage"; exit 42;; | 
					
						
							|  |  |  |             esac ;; | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         apache) | 
					
						
							|  |  |  |             sudo_or_exit | 
					
						
							|  |  |  |             case $2 in | 
					
						
							|  |  |  |                 install) install_apache_site ;; | 
					
						
							|  |  |  |                 remove) remove_apache_site ;; | 
					
						
							|  |  |  |                 *) usage "$_usage"; exit 42;; | 
					
						
							|  |  |  |             esac ;; | 
					
						
							| 
									
										
										
										
											2020-03-02 19:00:19 +01:00
										 |  |  |         doc) rst-doc;; | 
					
						
							| 
									
										
										
										
											2020-02-04 17:59:58 +01:00
										 |  |  |         *) usage "unknown or missing command $1"; exit 42;; | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     esac | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-27 19:13:03 +01:00
										 |  |  | _service_prefix="  ${_Yellow}|$SERVICE_USER|${_creset} " | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | install_all() { | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  |     rst_title "Install $SEARX_INSTANCE_NAME (service)" | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01:00
										 |  |  |     pkg_install "$SEARX_PACKAGES" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     wait_key | 
					
						
							|  |  |  |     assert_user | 
					
						
							|  |  |  |     wait_key | 
					
						
							|  |  |  |     clone_searx | 
					
						
							|  |  |  |     wait_key | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  |     create_pyenv | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     wait_key | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |     install_settings | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     wait_key | 
					
						
							|  |  |  |     test_local_searx | 
					
						
							|  |  |  |     wait_key | 
					
						
							|  |  |  |     install_searx_uwsgi | 
					
						
							| 
									
										
										
										
											2020-04-05 17:40:37 +02:00
										 |  |  |     if ! service_is_available "http://${SEARX_INTERNAL_HTTP}"; then | 
					
						
							|  |  |  |         err_msg "URL http://${SEARX_INTERNAL_HTTP} not available, check searx & uwsgi setup!" | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-02-26 19:07:55 +01:00
										 |  |  |     if ask_yn "Do you want to inspect the installation?" Ny; then | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  |         inspect_service | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | update_searx() { | 
					
						
							|  |  |  |     rst_title "Update searx instance" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     echo | 
					
						
							| 
									
										
										
										
											2020-02-08 17:12:01 +01:00
										 |  |  |     tee_stderr 0.3 <<EOF | sudo -H -u "${SERVICE_USER}" -i 2>&1 |  prefix_stdout "$_service_prefix"
 | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | cd ${SEARX_SRC} | 
					
						
							| 
									
										
										
										
											2020-03-29 15:09:34 +02:00
										 |  |  | git checkout -B "$GIT_BRANCH" | 
					
						
							| 
									
										
										
										
											2020-02-08 17:12:01 +01:00
										 |  |  | git pull | 
					
						
							| 
									
										
										
										
											2020-05-21 15:46:43 +02: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 08:58:13 +01:00
										 |  |  | pip install -U pyyaml | 
					
						
							| 
									
										
										
										
											2020-05-21 15:46:43 +02:00
										 |  |  | pip install -U -e . | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | EOF | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |     install_settings | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |     uWSGI_restart "$SEARX_UWSGI_APP" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | remove_all() { | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  |     rst_title "De-Install $SEARX_INSTANCE_NAME (service)" | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     rst_para "\
 | 
					
						
							|  |  |  | It goes without saying that this script can only be used to remove | 
					
						
							|  |  |  | installations that were installed with this script."
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  |     if ! ask_yn "Do you really want to deinstall $SEARX_INSTANCE_NAME?"; then | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  |         return | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |     remove_searx_uwsgi | 
					
						
							| 
									
										
										
										
											2020-02-01 16:59:27 +01:00
										 |  |  |     drop_service_account "${SERVICE_USER}" | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |     remove_settings | 
					
						
							|  |  |  |     wait_key | 
					
						
							| 
									
										
										
										
											2020-01-30 19:55:51 +01: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 19:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | assert_user() { | 
					
						
							|  |  |  |     rst_title "user $SERVICE_USER" section | 
					
						
							|  |  |  |     echo | 
					
						
							|  |  |  |     tee_stderr 1 <<EOF | bash | prefix_stdout | 
					
						
							| 
									
										
										
										
											2020-02-23 12:10:45 +01: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 19:26:54 +01: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 16:55:05 +01:00
										 |  |  | clone_is_available() { | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |     [[ -f "$SEARX_SRC/.git/config" ]] | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | # shellcheck disable=SC2164 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | clone_searx() { | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     rst_title "Clone searx sources" section | 
					
						
							|  |  |  |     echo | 
					
						
							| 
									
										
										
										
											2020-04-30 17:49:26 +02: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 14:01:38 +01:00
										 |  |  |     SERVICE_HOME="$(sudo -i -u "$SERVICE_USER" echo \$HOME 2>/dev/null)" | 
					
						
							|  |  |  |     if [[ ! "${SERVICE_HOME}" ]]; then | 
					
						
							|  |  |  |         err_msg "to clone searx sources, user $SERVICE_USER hast to be created first" | 
					
						
							|  |  |  |         return 42 | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-12-23 16:06:06 +01: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 18:22:41 +01: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 16:06:06 +01:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  |     export SERVICE_HOME | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |     git_clone "$REPO_ROOT" "$SEARX_SRC" \
 | 
					
						
							| 
									
										
										
										
											2020-03-29 15:09:34 +02:00
										 |  |  |               "$GIT_BRANCH" "$SERVICE_USER" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01: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 15:09:34 +02:00
										 |  |  | git remote set-url origin ${GIT_URL} | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | git config user.email "$ADMIN_EMAIL" | 
					
						
							|  |  |  | git config user.name "$ADMIN_NAME" | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  | git config --list | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | EOF | 
					
						
							|  |  |  |     popd > /dev/null | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  | install_settings() { | 
					
						
							|  |  |  |     rst_title "${SEARX_SETTINGS_PATH}" section | 
					
						
							|  |  |  |     if ! clone_is_available; then | 
					
						
							|  |  |  |         err_msg "you have to install searx first" | 
					
						
							|  |  |  |         exit 42 | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2021-04-12 17:24:00 +02:00
										 |  |  |     mkdir -p "$(dirname "${SEARX_SETTINGS_PATH}")" | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-12 17:24:00 +02:00
										 |  |  |     if [[ ! -f "${SEARX_SETTINGS_PATH}" ]]; then | 
					
						
							| 
									
										
										
										
											2020-12-23 14:10:07 +01:00
										 |  |  |         info_msg "install settings ${SEARX_SETTINGS_TEMPLATE}" | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |         info_msg "  --> ${SEARX_SETTINGS_PATH}" | 
					
						
							| 
									
										
										
										
											2020-12-08 20:19:10 +01:00
										 |  |  |         cp "${SEARX_SETTINGS_TEMPLATE}" "${SEARX_SETTINGS_PATH}" | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |         configure_searx | 
					
						
							|  |  |  |         return | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-26 19:07:55 +01:00
										 |  |  |     rst_para "Diff between origin's setting file (+) and current (-):" | 
					
						
							| 
									
										
										
										
											2020-12-08 20:19:10 +01:00
										 |  |  |     echo "${SEARX_SETTINGS_PATH}" "${SEARX_SETTINGS_TEMPLATE}" | 
					
						
							|  |  |  |     $DIFF_CMD "${SEARX_SETTINGS_PATH}" "${SEARX_SETTINGS_TEMPLATE}" | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     local action | 
					
						
							|  |  |  |     choose_one action "What should happen to the settings file? " \
 | 
					
						
							| 
									
										
										
										
											2020-02-26 19:07:55 +01:00
										 |  |  |            "keep configuration unchanged" \
 | 
					
						
							|  |  |  |            "use origin settings" \
 | 
					
						
							| 
									
										
										
										
											2021-04-28 16:29:03 +02:00
										 |  |  |            "start interactive shell" | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |     case $action in | 
					
						
							| 
									
										
										
										
											2020-02-26 19:07:55 +01:00
										 |  |  |         "keep configuration unchanged") | 
					
						
							|  |  |  |             info_msg "leave settings file unchanged" | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |         "use origin settings") | 
					
						
							|  |  |  |             backup_file "${SEARX_SETTINGS_PATH}" | 
					
						
							|  |  |  |             info_msg "install origin settings" | 
					
						
							| 
									
										
										
										
											2020-12-08 20:19:10 +01:00
										 |  |  |             cp "${SEARX_SETTINGS_TEMPLATE}" "${SEARX_SETTINGS_PATH}" | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |             ;; | 
					
						
							| 
									
										
										
										
											2021-04-28 16:29:03 +02:00
										 |  |  |         "start interactive shell") | 
					
						
							| 
									
										
										
										
											2020-02-26 19:07:55 +01:00
										 |  |  |             backup_file "${SEARX_SETTINGS_PATH}" | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |             echo -e "// exit with [${_BCyan}CTRL-D${_creset}]" | 
					
						
							|  |  |  |             sudo -H -i | 
					
						
							|  |  |  |             rst_para 'Diff between new setting file (-) and current (+):' | 
					
						
							|  |  |  |             echo | 
					
						
							| 
									
										
										
										
											2020-12-08 20:19:10 +01:00
										 |  |  |             $DIFF_CMD "${SEARX_SETTINGS_TEMPLATE}" "${SEARX_SETTINGS_PATH}" | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |             wait_key | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |     esac | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | remove_settings() { | 
					
						
							|  |  |  |     rst_title "remove searx settings" section | 
					
						
							|  |  |  |     echo | 
					
						
							|  |  |  |     info_msg "delete ${SEARX_SETTINGS_PATH}" | 
					
						
							|  |  |  |     rm -f "${SEARX_SETTINGS_PATH}" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  | remove_searx() { | 
					
						
							|  |  |  |     rst_title "Drop searx sources" section | 
					
						
							|  |  |  |     if ask_yn "Do you really want to drop searx sources ($SEARX_SRC)?"; then | 
					
						
							|  |  |  |         rm -rf "$SEARX_SRC" | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         rst_para "Leave searx sources unchanged." | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | pyenv_is_available() { | 
					
						
							|  |  |  |     [[ -f "${SEARX_PYENV}/bin/activate" ]] | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | create_pyenv() { | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  |     rst_title "Create virtualenv (python)" section | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     echo | 
					
						
							| 
									
										
										
										
											2021-04-17 18:20:29 +02:00
										 |  |  |     if [[ ! -f "${SEARX_SRC}/manage" ]]; then | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  |         err_msg "to create pyenv for searx, searx has to be cloned first" | 
					
						
							|  |  |  |         return 42 | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |     info_msg "create pyenv in ${SEARX_PYENV}" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     tee_stderr 0.1 <<EOF | sudo -H -u "${SERVICE_USER}" -i 2>&1 |  prefix_stdout "$_service_prefix"
 | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01: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 19:26:54 +01:00
										 |  |  | EOF | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  |     wait_key | 
					
						
							|  |  |  |     info_msg "install needed python packages" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     tee_stderr 0.1 <<EOF | sudo -H -u "${SERVICE_USER}" -i 2>&1 |  prefix_stdout "$_service_prefix"
 | 
					
						
							| 
									
										
										
										
											2020-05-21 15:46:43 +02: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 08:58:13 +01:00
										 |  |  | pip install -U pyyaml | 
					
						
							| 
									
										
										
										
											2020-05-21 15:46:43 +02:00
										 |  |  | cd ${SEARX_SRC} | 
					
						
							|  |  |  | pip install -e . | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | EOF | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | remove_pyenv() { | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01: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 19:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | configure_searx() { | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     rst_title "Configure searx" section | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |     rst_para "Setup searx config located at $SEARX_SETTINGS_PATH" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     echo | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |     tee_stderr 0.1 <<EOF | sudo -H -i 2>&1 |  prefix_stdout "$_service_prefix" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | cd ${SEARX_SRC} | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  | sed -i -e "s/ultrasecretkey/$(openssl rand -hex 16)/g" "$SEARX_SETTINGS_PATH" | 
					
						
							|  |  |  | sed -i -e "s/{instance_name}/${SEARX_INSTANCE_NAME}/g" "$SEARX_SETTINGS_PATH" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | EOF | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | test_local_searx() { | 
					
						
							| 
									
										
										
										
											2020-01-16 14:01:38 +01:00
										 |  |  |     rst_title "Testing searx instance localy" section | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     echo | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-05 17:40:37 +02: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 19:08:40 +01:00
										 |  |  |         err_msg "should stop that service before starting local tests!" | 
					
						
							|  |  |  |         if ! ask_yn "Continue with local tests?"; then | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2021-06-23 09:56:59 +02:00
										 |  |  |     sed -i -e "s/debug: false/debug: true/g" "$SEARX_SETTINGS_PATH" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     tee_stderr 0.1 <<EOF | sudo -H -u "${SERVICE_USER}" -i 2>&1 |  prefix_stdout "$_service_prefix"
 | 
					
						
							| 
									
										
										
										
											2020-02-27 19:13:03 +01:00
										 |  |  | export SEARX_SETTINGS_PATH="${SEARX_SETTINGS_PATH}" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | cd ${SEARX_SRC} | 
					
						
							| 
									
										
										
										
											2020-03-02 19:00:19 +01:00
										 |  |  | timeout 10 python searx/webapp.py & | 
					
						
							| 
									
										
										
										
											2020-02-04 19:47:33 +01:00
										 |  |  | sleep 3 | 
					
						
							| 
									
										
										
										
											2020-04-05 17:40:37 +02:00
										 |  |  | curl --location --verbose --head --insecure $SEARX_INTERNAL_HTTP | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | EOF | 
					
						
							| 
									
										
										
										
											2021-06-23 09:56:59 +02:00
										 |  |  |     sed -i -e "s/debug: true/debug: false/g" "$SEARX_SETTINGS_PATH" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | install_searx_uwsgi() { | 
					
						
							|  |  |  |     rst_title "Install searx's uWSGI app (searx.ini)" section | 
					
						
							|  |  |  |     echo | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  |     install_uwsgi | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     uWSGI_install_app "$SEARX_UWSGI_APP" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | remove_searx_uwsgi() { | 
					
						
							|  |  |  |     rst_title "Remove searx's uWSGI app (searx.ini)" section | 
					
						
							|  |  |  |     echo | 
					
						
							|  |  |  |     uWSGI_remove_app "$SEARX_UWSGI_APP" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | activate_service() { | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  |     rst_title "Activate $SEARX_INSTANCE_NAME (service)" section | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     echo | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     uWSGI_enable_app "$SEARX_UWSGI_APP" | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |     uWSGI_restart "$SEARX_UWSGI_APP" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | deactivate_service() { | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  |     rst_title "De-Activate $SEARX_INSTANCE_NAME (service)" section | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     echo | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     uWSGI_disable_app "$SEARX_UWSGI_APP" | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |     uWSGI_restart "$SEARX_UWSGI_APP" | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-04 17:54:20 +02: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-06-23 09:56:59 +02:00
										 |  |  | sed -i -e "s/image_proxy: false/image_proxy: true/g" "$SEARX_SETTINGS_PATH" | 
					
						
							| 
									
										
										
										
											2020-04-04 17:54:20 +02: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-06-23 09:56:59 +02:00
										 |  |  | sed -i -e "s/image_proxy: true/image_proxy: false/g" "$SEARX_SETTINGS_PATH" | 
					
						
							| 
									
										
										
										
											2020-04-04 17:54:20 +02:00
										 |  |  | EOF | 
					
						
							|  |  |  |     uWSGI_restart "$SEARX_UWSGI_APP" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | enable_debug() { | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  |     warn_msg "Do not enable debug in production enviroments!!" | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     info_msg "try to enable debug mode ..." | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |     tee_stderr 0.1 <<EOF | sudo -H -i 2>&1 |  prefix_stdout "$_service_prefix" | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | cd ${SEARX_SRC} | 
					
						
							| 
									
										
										
										
											2021-06-23 09:56:59 +02:00
										 |  |  | sed -i -e "s/debug: false/debug: true/g" "$SEARX_SETTINGS_PATH" | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | EOF | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |     uWSGI_restart "$SEARX_UWSGI_APP" | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | disable_debug() { | 
					
						
							|  |  |  |     info_msg "try to disable debug mode ..." | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |     tee_stderr 0.1 <<EOF | sudo -H -i 2>&1 |  prefix_stdout "$_service_prefix" | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | cd ${SEARX_SRC} | 
					
						
							| 
									
										
										
										
											2021-06-23 09:56:59 +02:00
										 |  |  | sed -i -e "s/debug: true/debug: false/g" "$SEARX_SETTINGS_PATH" | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | EOF | 
					
						
							| 
									
										
										
										
											2020-02-23 21:05:22 +01:00
										 |  |  |     uWSGI_restart "$SEARX_UWSGI_APP" | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-04 17:54:20 +02:00
										 |  |  | set_result_proxy() { | 
					
						
							| 
									
										
										
										
											2020-04-13 11:34:28 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # usage: set_result_proxy <URL> [<key>] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-28 16:21:45 +02:00
										 |  |  |     info_msg "try to set result proxy: '$1' ($2)" | 
					
						
							| 
									
										
										
										
											2020-04-04 17:54:20 +02:00
										 |  |  |     cp "${SEARX_SETTINGS_PATH}" "${SEARX_SETTINGS_PATH}.bak" | 
					
						
							|  |  |  |     _set_result_proxy "$1" "$2" > "${SEARX_SETTINGS_PATH}" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _set_result_proxy() { | 
					
						
							|  |  |  |     local line | 
					
						
							|  |  |  |     local stage=0 | 
					
						
							|  |  |  |     local url="    url: $1" | 
					
						
							| 
									
										
										
										
											2020-04-28 16:21:45 +02:00
										 |  |  |     local key="    key: !!binary \"$2\"" | 
					
						
							| 
									
										
										
										
											2020-04-04 17:54:20 +02: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" | 
					
						
							|  |  |  |     done < "${SEARX_SETTINGS_PATH}.bak" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function has_substring() { | 
					
						
							|  |  |  |    [[ "$1" != "${2/$1/}" ]] | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  | inspect_service() { | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     rst_title "service status & log" | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |     cat <<EOF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | sourced ${DOT_CONFIG#"$REPO_ROOT/"} : | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   PUBLIC_URL          : ${PUBLIC_URL} | 
					
						
							|  |  |  |   SEARX_URL_PATH      : ${SEARX_URL_PATH} | 
					
						
							|  |  |  |   SEARX_INSTANCE_NAME : ${SEARX_INSTANCE_NAME} | 
					
						
							| 
									
										
										
										
											2020-04-05 17:40:37 +02:00
										 |  |  |   SEARX_INTERNAL_HTTP  : ${SEARX_INTERNAL_HTTP} | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | EOF | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-01 16:59:27 +01:00
										 |  |  |     if service_account_is_available "$SERVICE_USER"; then | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  |         info_msg "Service account $SERVICE_USER exists." | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  |         err_msg "Service account $SERVICE_USER does not exists!" | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     if pyenv_is_available; then | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         info_msg "~$SERVICE_USER: python environment is available." | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         err_msg "~$SERVICE_USER: python environment is not available!" | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     if clone_is_available; then | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         info_msg "~$SERVICE_USER: Searx software is installed." | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         err_msg "~$SERVICE_USER: Missing searx software!" | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01: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 19:08:40 +01:00
										 |  |  |     uWSGI_app_available "$SEARX_UWSGI_APP" \
 | 
					
						
							|  |  |  |         || err_msg "uWSGI app $SEARX_UWSGI_APP not available!" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-07 20:24:08 +01:00
										 |  |  |     if in_container; then | 
					
						
							| 
									
										
										
										
											2020-03-08 02:41:45 +01:00
										 |  |  |         lxc_suite_info | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         info_msg "public URL   --> ${PUBLIC_URL}" | 
					
						
							| 
									
										
										
										
											2020-04-05 17:40:37 +02:00
										 |  |  |         info_msg "internal URL --> http://${SEARX_INTERNAL_HTTP}" | 
					
						
							| 
									
										
										
										
											2020-02-27 19:13:03 +01:00
										 |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-05 17:40:37 +02: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 02:41:45 +01:00
										 |  |  |         MSG="${_Green}[${_BCyan}CTRL-C${_Green}] to stop or [${_BCyan}KEY${_Green}] to continue"\
 | 
					
						
							|  |  |  |            wait_key | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |     if ! service_is_available "${PUBLIC_URL}"; then | 
					
						
							| 
									
										
										
										
											2020-02-17 18:58:59 +01:00
										 |  |  |         warn_msg "Public service at ${PUBLIC_URL} is not available!" | 
					
						
							| 
									
										
										
										
											2020-03-08 02:41:45 +01:00
										 |  |  |         if ! in_container; then | 
					
						
							| 
									
										
										
										
											2020-02-27 19:13:03 +01:00
										 |  |  |             warn_msg "Check if public name is correct and routed or use the public IP from above." | 
					
						
							|  |  |  |         fi | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  |     local _debug_on | 
					
						
							|  |  |  |     if ask_yn "Enable searx debug mode?"; then | 
					
						
							|  |  |  |         enable_debug | 
					
						
							|  |  |  |         _debug_on=1 | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     echo | 
					
						
							| 
									
										
										
										
											2020-02-02 18:14:10 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-08 02:41:45 +01: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 22:12:44 +02:00
										 |  |  |         fedora-*|centos-7) | 
					
						
							| 
									
										
										
										
											2020-03-08 02:41:45 +01:00
										 |  |  |             systemctl --no-pager -l status uwsgi | 
					
						
							|  |  |  |             ;; | 
					
						
							|  |  |  |     esac | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-04 10:39:42 +01:00
										 |  |  |     # shellcheck disable=SC2059 | 
					
						
							| 
									
										
										
										
											2020-01-31 18:24:31 +01:00
										 |  |  |     printf "// use ${_BCyan}CTRL-C${_creset} to stop monitoring the log" | 
					
						
							| 
									
										
										
										
											2020-03-08 02:41:45 +01:00
										 |  |  |     read -r -s -n1 -t 5 | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     echo | 
					
						
							| 
									
										
										
										
											2020-03-08 02:41:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     while true;  do | 
					
						
							|  |  |  |         trap break 2 | 
					
						
							| 
									
										
										
										
											2020-03-08 02:41:45 +01: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 22:12:44 +02:00
										 |  |  |             fedora-*|centos-7)  journalctl -f -u uwsgi ;; | 
					
						
							| 
									
										
										
										
											2020-03-08 02:41:45 +01:00
										 |  |  |         esac | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     done | 
					
						
							| 
									
										
										
										
											2020-01-20 16:55:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if [[ $_debug_on == 1 ]]; then | 
					
						
							|  |  |  |         disable_debug | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  |     return 0 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | install_apache_site() { | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |     rst_title "Install Apache site $APACHE_SEARX_SITE" | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     rst_para "\
 | 
					
						
							| 
									
										
										
										
											2020-04-05 17:40:37 +02:00
										 |  |  | This installs the searx uwsgi app as apache site.  If your server is public to | 
					
						
							|  |  |  | the internet, you should instead use a reverse proxy (filtron) to block | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  | excessively bot queries."
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ! apache_is_installed && err_msg "Apache is not installed." | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |     if ! ask_yn "Do you really want to continue?" Yn; then | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |         return | 
					
						
							| 
									
										
										
										
											2020-04-07 18:31:51 +02:00
										 |  |  |     else | 
					
						
							|  |  |  |         install_apache | 
					
						
							| 
									
										
										
										
											2020-01-21 18:38:57 +01:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |     apache_install_site --variant=uwsgi "${APACHE_SEARX_SITE}" | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-08 18:38:36 +02:00
										 |  |  |     rst_title "Install searx's uWSGI app (searx.ini)" section | 
					
						
							|  |  |  |     echo | 
					
						
							|  |  |  |     uWSGI_install_app --variant=socket "$SEARX_UWSGI_APP" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01: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 18:38:36 +02:00
										 |  |  |     if ! ask_yn "Do you really want to continue?" Yn; then | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  |         return | 
					
						
							| 
									
										
										
										
											2020-01-27 19:08:40 +01:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2020-01-29 20:00:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     apache_remove_site "${APACHE_SEARX_SITE}" | 
					
						
							| 
									
										
										
										
											2020-04-08 18:38:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     rst_title "Remove searx's uWSGI app (searx.ini)" section | 
					
						
							|  |  |  |     echo | 
					
						
							|  |  |  |     uWSGI_remove_app "$SEARX_UWSGI_APP" | 
					
						
							| 
									
										
										
										
											2020-01-20 19:08:56 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-02 19:00:19 +01:00
										 |  |  | rst-doc() { | 
					
						
							|  |  |  |     local debian="${SEARX_PACKAGES_debian}" | 
					
						
							|  |  |  |     local arch="${SEARX_PACKAGES_arch}" | 
					
						
							|  |  |  |     local fedora="${SEARX_PACKAGES_fedora}" | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |     local centos="${SEARX_PACKAGES_centos}" | 
					
						
							| 
									
										
										
										
											2020-03-31 18:25:40 +02:00
										 |  |  |     local debian_build="${BUILD_PACKAGES_debian}" | 
					
						
							|  |  |  |     local arch_build="${BUILD_PACKAGES_arch}" | 
					
						
							|  |  |  |     local fedora_build="${BUILD_PACKAGES_fedora}" | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |     local centos_build="${SEARX_PACKAGES_centos}" | 
					
						
							| 
									
										
										
										
											2020-03-02 19:00:19 +01: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 22:12:44 +02:00
										 |  |  |     centos="$(echo "${centos}" | sed 's/.*/          & \\/' | sed '$ s/.$//')" | 
					
						
							| 
									
										
										
										
											2020-03-31 18:25:40 +02: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 22:12:44 +02:00
										 |  |  |     centos_build="$(echo "${centos_build}" | sed 's/.*/          & \\/' | sed '$ s/.$//')" | 
					
						
							| 
									
										
										
										
											2020-03-02 19:00:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-04 12:22:20 +01:00
										 |  |  |     eval "echo \"$(< "${REPO_ROOT}/docs/build-templates/searx.rst")\"" | 
					
						
							| 
									
										
										
										
											2020-03-02 19:00:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-03 19:57:15 +01: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 11:11:14 +02:00
										 |  |  |     for DIST_NAME in ubuntu-20.04 arch fedora; do | 
					
						
							| 
									
										
										
										
											2020-03-03 19:57:15 +01: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 12:22:20 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-03 19:57:15 +01:00
										 |  |  |             case $DIST_ID-$DIST_VERS in | 
					
						
							| 
									
										
										
										
											2020-03-04 12:22:20 +01:00
										 |  |  |                 ubuntu-*|debian-*)  cat <<EOF | 
					
						
							| 
									
										
										
										
											2020-06-24 15:15:15 +02: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 12:22:20 +01:00
										 |  |  | EOF | 
					
						
							|  |  |  |                 ;; | 
					
						
							|  |  |  |                 arch-*) cat <<EOF | 
					
						
							| 
									
										
										
										
											2020-06-24 15:15:15 +02: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 12:22:20 +01:00
										 |  |  | EOF | 
					
						
							|  |  |  |                 ;; | 
					
						
							| 
									
										
										
										
											2020-08-01 22:12:44 +02:00
										 |  |  |                 fedora-*|centos-7) cat <<EOF | 
					
						
							| 
									
										
										
										
											2020-03-04 12:22:20 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-24 15:15:15 +02: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 12:22:20 +01:00
										 |  |  | EOF | 
					
						
							|  |  |  |                 ;; | 
					
						
							| 
									
										
										
										
											2020-03-03 19:57:15 +01:00
										 |  |  |             esac | 
					
						
							|  |  |  |             echo -e ".. END searx uwsgi-description $DIST_NAME" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             echo -e "\n.. START searx uwsgi-appini $DIST_NAME" | 
					
						
							| 
									
										
										
										
											2020-06-24 15:15:15 +02:00
										 |  |  |             echo ".. code:: bash" | 
					
						
							|  |  |  |             echo | 
					
						
							|  |  |  |             eval "echo \"$(< "${TEMPLATES}/${uWSGI_APPS_AVAILABLE}/${SEARX_UWSGI_APP}")\"" | prefix_stdout "  " | 
					
						
							| 
									
										
										
										
											2020-03-03 19:57:15 +01:00
										 |  |  |             echo -e "\n.. END searx uwsgi-appini $DIST_NAME" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  |     done | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-02 19:00:19 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-14 19:26:54 +01:00
										 |  |  | # ---------------------------------------------------------------------------- | 
					
						
							|  |  |  | main "$@" | 
					
						
							|  |  |  | # ---------------------------------------------------------------------------- |