From a41d1ac993ea45ee7de334f8feadb1668e8ef247 Mon Sep 17 00:00:00 2001 From: Teja Swaroop Pothala Date: Mon, 19 May 2025 17:27:57 -0400 Subject: [PATCH] install ssh on ubuntu core --- src/ubuntu/install/tools/install_tools.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ubuntu/install/tools/install_tools.sh b/src/ubuntu/install/tools/install_tools.sh index 48aca9d..fb5dd19 100644 --- a/src/ubuntu/install/tools/install_tools.sh +++ b/src/ubuntu/install/tools/install_tools.sh @@ -41,6 +41,11 @@ else apt-get install ${PARROTEXTRA} -y vim wget net-tools locales bzip2 wmctrl software-properties-common mesa-utils bc fi + # Install openssh-client on Ubuntu + if grep -q "ubuntu" /etc/os-release; then + apt-get install -y openssh-client + fi + echo "generate locales for en_US.UTF-8" locale-gen en_US.UTF-8 fi