summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshley Cui <acui@redhat.com>2022-07-15 15:20:16 -0400
committerAshley Cui <acui@redhat.com>2022-07-15 15:36:17 -0400
commit5f04f9961a6e18603d30b8b7aa415f9607d2f945 (patch)
treee7b552da7ed07c7229f10a070cf7411c1e02dd74
parent98b22e29c9a769020de1ae8d2bf9a7630e930e78 (diff)
downloadpodman-5f04f9961a6e18603d30b8b7aa415f9607d2f945.tar.gz
podman-5f04f9961a6e18603d30b8b7aa415f9607d2f945.tar.bz2
podman-5f04f9961a6e18603d30b8b7aa415f9607d2f945.zip
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>
-rw-r--r--pkg/machine/keys.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/machine/keys.go b/pkg/machine/keys.go
index 0c7d7114e..94cbdac04 100644
--- a/pkg/machine/keys.go
+++ b/pkg/machine/keys.go
@@ -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
}