[install-federated] Install bash-completion

This commit is contained in:
Bernhard "bero" Rosenkränzer (Boggins) 2025-01-26 20:02:18 +01:00
parent 245158111e
commit b094020ba8

View File

@ -72,14 +72,16 @@ if [[ "$NAME" = "Ubuntu" ]]; then
#check_memory #check_memory
check_ports check_ports
elif [[ "$ID" = "openmandriva" ]]; then elif [[ "$ID" = "openmandriva" ]]; then
command -v dig &>/dev/null || dnf -y --refresh install bind-utils # Small and useful enough for "docker logs [tab]" and friends
command -v git &>/dev/null || dnf -y --refresh install git-core dnf -y --refresh install bash-completion
command -v crontab &>/dev/null || dnf -y --refresh install cronie command -v dig &>/dev/null || dnf -y install bind-utils
command -v git &>/dev/null || dnf -y install git-core
command -v crontab &>/dev/null || dnf -y install cronie
# Make cronie happy # Make cronie happy
mkdir -p /root/.cache || : mkdir -p /root/.cache || :
command -v nc &>/dev/null || dnf -y --refresh install netcat-openbsd command -v nc &>/dev/null || dnf -y install netcat-openbsd
command -v htpasswd &>/dev/null || dnf -y --refresh install apache-tools command -v htpasswd &>/dev/null || dnf -y install apache-tools
command -v openssl &>/dev/null || dnf -y --refresh install openssl command -v openssl &>/dev/null || dnf -y install openssl
check_docker check_docker
check_os check_os
check_ports check_ports