Merge pull request #3320 from cevich/fix_ssh_race

Cirrus: Guarantee ssh is running for rootless
This commit is contained in:
OpenShift Merge Robot
2019-06-14 15:44:58 +02:00
committed by GitHub

View File

@ -211,6 +211,8 @@ setup_rootless() {
# Works with older versions of bash # Works with older versions of bash
printf "${_env_var_name}=%q\n" "$(printenv $_env_var_name)" >> "/home/$ROOTLESS_USER/.bashrc" printf "${_env_var_name}=%q\n" "$(printenv $_env_var_name)" >> "/home/$ROOTLESS_USER/.bashrc"
done done
echo "Ensure the systems ssh process is up and running"
systemctl --wait restart sshd # a regular 'start' could hang forever
} }
# Helper/wrapper script to only show stderr/stdout on non-zero exit # Helper/wrapper script to only show stderr/stdout on non-zero exit