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