diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2022-03-12 18:00:45 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2022-03-12 18:00:45 +0100 |
commit | 7308a6e33c0aaad67ff214be5eb984e6900866f2 (patch) | |
tree | dbfeeed7cb7429f47f3df299bed77438525d2057 | |
parent | 1c79c1a3d2e7f18c198492c8d7bdc18911f26c04 (diff) | |
download | searxng-7308a6e33c0aaad67ff214be5eb984e6900866f2.tar.gz searxng-7308a6e33c0aaad67ff214be5eb984e6900866f2.zip |
[LXC] ubuntu 20.10 EOL, upgrade to ubunut 21.10 [1]
[1] https://wiki.ubuntu.com/Releases
Tested by::
# build the container ..
$ sudo -H ./utils/lxc.sh build searx-ubu2110
# open a shell in the container
$ sudo -H ./utils/lxc.sh cmd searx-ubu2110 bash
[root@searx-ubu2110 SearXNG]#
# install a complete SearXNG suite ..
[root@searx-ubu2110 SearXNG]# ./utils/searx.sh install all
...
# install apache to export the SearXNG instance by HTTP
[root@searx-ubu2110 SearXNG]# ./utils/searx.sh apache install
...
INFO: got 200 from http://10.174.184.94/searx
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-rw-r--r-- | utils/lxc-searx.env | 2 | ||||
-rwxr-xr-x | utils/lxc.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/utils/lxc-searx.env b/utils/lxc-searx.env index f02f919ee..13b15522c 100644 --- a/utils/lxc-searx.env +++ b/utils/lxc-searx.env @@ -23,7 +23,7 @@ lxc_set_suite_env() { # end of standard support see https://wiki.ubuntu.com/Releases "$LINUXCONTAINERS_ORG_NAME:ubuntu/18.04" "ubu1804" # April 2023 "$LINUXCONTAINERS_ORG_NAME:ubuntu/20.04" "ubu2004" # April 2025 - "$LINUXCONTAINERS_ORG_NAME:ubuntu/20.10" "ubu2010" # July 2021 + "$LINUXCONTAINERS_ORG_NAME:ubuntu/21.10" "ubu2110" # July 2027 # EOL see https://fedoraproject.org/wiki/Releases "$LINUXCONTAINERS_ORG_NAME:fedora/35" "fedora35" diff --git a/utils/lxc.sh b/utils/lxc.sh index 0b4e246df..9754b5d75 100755 --- a/utils/lxc.sh +++ b/utils/lxc.sh @@ -41,7 +41,7 @@ echo 'Set disable_coredump false' >> /etc/sudo.conf " # shellcheck disable=SC2034 -ubu2010_boilerplate="$ubu1904_boilerplate" +ubu2110_boilerplate="$ubu1904_boilerplate" # shellcheck disable=SC2034 archlinux_boilerplate=" |