c12s-kubespray/vagrant-scripts/ssh-keygen.sh
2016-06-27 17:57:29 +02:00

6 lines
139 B
Bash
Executable file

#!/bin/bash
mkdir -p ssh
if ! [ -f ssh/id_rsa ] ; then
ssh-keygen -N '' -t rsa -f ssh/id_rsa && cp ssh/id_rsa.pub ssh/authorized_keys
fi