2
0
mirror of https://github.com/searx/searx synced 2025-08-30 14:08:47 +00:00

lxc.sh install base: add bash and python3 to LXC_BASE_PACKAGES

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
Markus Heiser
2020-03-23 18:06:35 +01:00
parent baf1ffd1fa
commit 1fcec0bbda

View File

@@ -1097,13 +1097,13 @@ EOF
}
# apt packages
LXC_BASE_PACKAGES_debian="git build-essential"
LXC_BASE_PACKAGES_debian="bash git build-essential python3"
# pacman packages
LXC_BASE_PACKAGES_arch="git base-devel"
LXC_BASE_PACKAGES_arch="bash git base-devel python"
# dnf packages
LXC_BASE_PACKAGES_fedora="git @development-tools"
LXC_BASE_PACKAGES_fedora="bash git @development-tools python"
case $DIST_ID in
ubuntu|debian) LXC_BASE_PACKAGES="${LXC_BASE_PACKAGES_debian}" ;;