install ssh on ubuntu core

This commit is contained in:
Teja Swaroop Pothala 2025-05-19 17:27:57 -04:00
parent b8900ddc36
commit 2c9c48fedc
No known key found for this signature in database
GPG Key ID: DEBCE0B52FABDAAC

View File

@ -45,6 +45,11 @@ else
apt-get install ${PARROTEXTRA} -y vim wget net-tools locales bzip2 wmctrl software-properties-common mesa-utils bc apt-get install ${PARROTEXTRA} -y vim wget net-tools locales bzip2 wmctrl software-properties-common mesa-utils bc
fi 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" echo "generate locales for en_US.UTF-8"
locale-gen en_US.UTF-8 locale-gen en_US.UTF-8
fi fi