From 01b7e4944ef98d055885ab284ffa97d903a7fe5b 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 1fda15f..7e77582 100644 --- a/src/ubuntu/install/tools/install_tools.sh +++ b/src/ubuntu/install/tools/install_tools.sh @@ -45,6 +45,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 9bd235f34dfcaaa6549131178c9f196cc8a6a1de 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 7e77582..4b7f322 100644 --- a/src/ubuntu/install/tools/install_tools.sh +++ b/src/ubuntu/install/tools/install_tools.sh @@ -47,7 +47,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"