From f6e2465fc159aad7a028b128f0c2a583855938af Mon Sep 17 00:00:00 2001 From: Teja Swaroop Pothala Date: Mon, 19 May 2025 17:27:57 -0400 Subject: [PATCH 1/2] 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 182e316..5d4c0d3 100644 --- a/src/ubuntu/install/tools/install_tools.sh +++ b/src/ubuntu/install/tools/install_tools.sh @@ -42,6 +42,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 From 116e46e7f4eaed57b5145e544e39d388a9aeeff6 Mon Sep 17 00:00:00 2001 From: Teja Swaroop Pothala Date: Mon, 2 Jun 2025 02:48:54 -0400 Subject: [PATCH 2/2] add --no-install-recommends to ssh installation --- src/ubuntu/install/tools/install_tools.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ubuntu/install/tools/install_tools.sh b/src/ubuntu/install/tools/install_tools.sh index 5d4c0d3..d87b7c2 100644 --- a/src/ubuntu/install/tools/install_tools.sh +++ b/src/ubuntu/install/tools/install_tools.sh @@ -44,7 +44,7 @@ else # Install openssh-client on Ubuntu if grep -q "ubuntu" /etc/os-release; then - apt-get install -y openssh-client + apt-get install -y openssh-client --no-install-recommends fi echo "generate locales for en_US.UTF-8"