summaryrefslogtreecommitdiff
path: root/utils/lxc.sh
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2021-03-03 17:52:50 +0100
committerMarkus Heiser <markus.heiser@darmarit.de>2021-03-03 17:52:50 +0100
commitdaa4b676df0e0d51d2dcfc9b5b5f9217c223f2c6 (patch)
treeee622dc8a2095f54e44ce14a2222c786a6ed28bb /utils/lxc.sh
parentc748fc66cf7c4a4ebfecde61dd683422dd6b3901 (diff)
downloadsearxng-daa4b676df0e0d51d2dcfc9b5b5f9217c223f2c6.tar.gz
searxng-daa4b676df0e0d51d2dcfc9b5b5f9217c223f2c6.zip
[mod] Drop Ubuntu 16.04 (Xenial Xerus) support
EOL of Ubuntu 16.04 (Xenial Xerus) is in April 2021 but we do not support 16.04 since a longer time. Issues are comming from dependencies (e.g. pip):: [searx-ubu1604] |searx| SyntaxError: invalid syntax [searx-ubu1604] |searx| Traceback (most recent call last): [searx-ubu1604] |searx| File "/usr/local/searx/searx-pyenv/bin/pip", line 7, in <module> [searx-ubu1604] |searx| from pip._internal.cli.main import main [searx-ubu1604] |searx| File "/usr/local/searx/searx-pyenv/lib/python3.5/site-packages/pip/_internal/cli/main.py", line 60 [searx-ubu1604] |searx| sys.stderr.write(f"ERROR: {exc}") [searx-ubu1604] |searx| ^ [searx-ubu1604] |searx| SyntaxError: invalid syntax Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'utils/lxc.sh')
-rwxr-xr-xutils/lxc.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/lxc.sh b/utils/lxc.sh
index bad5c10c8..d2dd1a338 100755
--- a/utils/lxc.sh
+++ b/utils/lxc.sh
@@ -24,13 +24,12 @@ LXC_HOST_PREFIX="${LXC_HOST_PREFIX:-test}"
LXC_SHARE_FOLDER="/share"
LXC_REPO_ROOT="${LXC_SHARE_FOLDER}/$(basename "${REPO_ROOT}")"
-ubu1604_boilerplate="
+ubu1804_boilerplate="
export DEBIAN_FRONTEND=noninteractive
apt-get update -y
apt-get upgrade -y
apt-get install -y git curl wget
"
-ubu1804_boilerplate="$ubu1604_boilerplate"
ubu1904_boilerplate="$ubu1804_boilerplate"
# shellcheck disable=SC2034