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
1 changed files with 3 additions and 3 deletions

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}" ;;