From 8037177c832cd207383099e835ad4d330a14c8cb Mon Sep 17 00:00:00 2001 From: Sven Heidemann Date: Wed, 24 Nov 2021 09:32:30 +0100 Subject: [PATCH] Improved first_install --- common/debian/scripts/first_install.sh | 2 +- common/redhat/scripts/first_install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/debian/scripts/first_install.sh b/common/debian/scripts/first_install.sh index 9ea8d30..52e5ca3 100644 --- a/common/debian/scripts/first_install.sh +++ b/common/debian/scripts/first_install.sh @@ -2,5 +2,5 @@ first_install() { echo 'Installing useful apps' - apt install net-tools dnsutils nano htop iftop tree zip unzip curl wget git sudo -y + apt install net-tools dnsutils nano htop iftop tree zip unzip curl wget git sudo sshpass -y } diff --git a/common/redhat/scripts/first_install.sh b/common/redhat/scripts/first_install.sh index 119c571..372cf7a 100644 --- a/common/redhat/scripts/first_install.sh +++ b/common/redhat/scripts/first_install.sh @@ -2,5 +2,5 @@ first_install() { echo 'Installing useful apps' - dnf install net-tools dnsutils nano htop iftop tree zip unzip curl wget sudo -y + dnf install net-tools dnsutils nano htop iftop tree zip unzip curl wget sudo sshpass -y }