Machine init: create .ssh dir if not exist

When initing a machine, we generate ssh keys in `$HOME/.ssh`. If there
is not .ssh dir, we should create it, so the init does not fail.

Signed-off-by: Ashley Cui <acui@redhat.com>
This commit is contained in:
Ashley Cui
2022-07-15 15:20:16 -04:00
parent 98b22e29c9
commit 5f04f9961a

View File

@ -21,6 +21,9 @@ var sshCommand = []string{"ssh-keygen", "-N", "", "-t", "ed25519", "-f"}
// CreateSSHKeys makes a priv and pub ssh key for interacting
// the a VM.
func CreateSSHKeys(writeLocation string) (string, error) {
if err := os.MkdirAll(filepath.Dir(writeLocation), 0700); err != nil {
return "", err
}
if err := generatekeys(writeLocation); err != nil {
return "", err
}