Merge "Ensure key format is PEM in beaker tests"

This commit is contained in:
Zuul 2020-07-21 08:17:56 +00:00 committed by Gerrit Code Review
commit 54ebafb347
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
echo "Match address ::1" | sudo tee -a /etc/ssh/sshd_config
echo " PermitRootLogin without-password" | sudo tee -a /etc/ssh/sshd_config
mkdir -p .ssh
ssh-keygen -f ~/.ssh/id_rsa -b 2048 -P ""
ssh-keygen -f ~/.ssh/id_rsa -b 2048 -P "" -m PEM
sudo mkdir -p /root/.ssh
cat ~/.ssh/id_rsa.pub | sudo tee -a /root/.ssh/authorized_keys
if [[ -f /usr/bin/yum || -f /usr/bin/dnf ]]; then

View File

@ -9,7 +9,7 @@
echo "Match address ::1" | sudo tee -a /etc/ssh/sshd_config
echo " PermitRootLogin without-password" | sudo tee -a /etc/ssh/sshd_config
mkdir -p .ssh
ssh-keygen -f ~/.ssh/id_rsa -b 2048 -P ""
ssh-keygen -f ~/.ssh/id_rsa -b 2048 -P "" -m PEM
sudo mkdir -p /root/.ssh
cat ~/.ssh/id_rsa.pub | sudo tee -a /root/.ssh/authorized_keys
if [[ -f /usr/bin/yum || -f /usr/bin/dnf ]]; then