diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2020-03-07 20:24:08 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2020-03-07 20:24:08 +0100 |
commit | b1e90cff23eae2181d2b430e77471f488947d1a9 (patch) | |
tree | 18d1c0ce98f034cdb2c38840b3138f81654ff945 /utils/lxc-searx.env | |
parent | a258358633e18d3e5768223ebb05201bbd2e8ca4 (diff) | |
download | searxng-b1e90cff23eae2181d2b430e77471f488947d1a9.tar.gz searxng-b1e90cff23eae2181d2b430e77471f488947d1a9.zip |
LXC: separate lxc-suite from lxc & improved command line.
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'utils/lxc-searx.env')
-rw-r--r-- | utils/lxc-searx.env | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/utils/lxc-searx.env b/utils/lxc-searx.env new file mode 100644 index 000000000..b088ca792 --- /dev/null +++ b/utils/lxc-searx.env @@ -0,0 +1,62 @@ +# -*- coding: utf-8; mode: sh indent-tabs-mode: nil -*- +# SPDX-License-Identifier: AGPL-3.0-or-later +# shellcheck shell=bash + +# This file is a setup of a LXC suite. It is sourced from different context, do +# not manipulate the environment directly, implement functions and manipulate +# environment only is subshells! + +# ---------------------------------------------------------------------------- +# config +# ---------------------------------------------------------------------------- + +lxc_set_suite_env() { + # name of https://images.linuxcontainers.org + export LINUXCONTAINERS_ORG_NAME="${LINUXCONTAINERS_ORG_NAME:-images}" + export LXC_HOST_PREFIX="${LXC_HOST_PREFIX:-searx}" + export LXC_SUITE=( + # end of standard support see https://wiki.ubuntu.com/Releases + "$LINUXCONTAINERS_ORG_NAME:ubuntu/16.04" "ubu1604" # April 2021 + "$LINUXCONTAINERS_ORG_NAME:ubuntu/18.04" "ubu1804" # April 2023 + "$LINUXCONTAINERS_ORG_NAME:ubuntu/19.10" "ubu1910" # July 2020 + "$LINUXCONTAINERS_ORG_NAME:ubuntu/20.04" "ubu2004" # future (EOL 2030) + + # EOL see https://fedoraproject.org/wiki/Releases + "$LINUXCONTAINERS_ORG_NAME:fedora/31" "fedora31" + + # rolling releases see https://www.archlinux.org/releng/releases/ + "$LINUXCONTAINERS_ORG_NAME:archlinux" "archlinux" + ) + export FILTRON_API="0.0.0.0:4005" + export FILTRON_LISTEN="0.0.0.0:4004" + export MORTY_LISTEN="0.0.0.0:3000" +} + +lxc_suite_install() { + ( + lxc_set_suite_env + export FORCE_TIMEOUT=0 + "${LXC_REPO_ROOT}/utils/searx.sh" install all + "${LXC_REPO_ROOT}/utils/morty.sh" install all + "${LXC_REPO_ROOT}/utils/filtron.sh" install all + + rst_title "suite installation finished ($(hostname))" part + lxc_suite_info + echo + ) +} + +lxc_suite_info() { + ( + lxc_set_suite_env + for ip in $(global_IPs) ; do + if [[ $ip =~ .*:.* ]]; then + info_msg "(${ip%|*}) IPv6: http://[${ip#*|}]" + else + # IPv4: + info_msg "(${ip%|*}) filtron: http://${ip#*|}:4004/" + info_msg "(${ip%|*}) morty: http://${ip#*|}:3000/" + fi + done + ) +} |