diff options
author | Valentin Rothberg <vrothberg@redhat.com> | 2022-03-21 15:15:52 +0100 |
---|---|---|
committer | Valentin Rothberg <vrothberg@redhat.com> | 2022-03-22 13:04:35 +0100 |
commit | 6c030cd5737a6257e9b7ee2db232a24ccef294de (patch) | |
tree | 055ee9cc94c7ceef98b73cd4d4d9aadba345c83e /pkg/machine/config.go | |
parent | 68b94338bac2f3a4ee18f959cc2b214bb22d7fcf (diff) | |
download | podman-6c030cd5737a6257e9b7ee2db232a24ccef294de.tar.gz podman-6c030cd5737a6257e9b7ee2db232a24ccef294de.tar.bz2 podman-6c030cd5737a6257e9b7ee2db232a24ccef294de.zip |
fix a number of `godot` issues
Still an unknown number remains but I am running out of patience.
Adding dots is not the best use of my time.
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
Diffstat (limited to 'pkg/machine/config.go')
-rw-r--r-- | pkg/machine/config.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/machine/config.go b/pkg/machine/config.go index b3b105150..aaf8da872 100644 --- a/pkg/machine/config.go +++ b/pkg/machine/config.go @@ -36,9 +36,9 @@ type InitOptions struct { type QemuMachineStatus = string const ( - // Running indicates the qemu vm is running + // Running indicates the qemu vm is running. Running QemuMachineStatus = "running" - // Stopped indicates the vm has stopped + // Stopped indicates the vm has stopped. Stopped QemuMachineStatus = "stopped" DefaultMachineName string = "podman-machine-default" ) @@ -147,7 +147,7 @@ func (rc RemoteConnectionType) MakeSSHURL(host, path, port, userName string) url } // GetDataDir returns the filepath where vm images should -// live for podman-machine +// live for podman-machine. func GetDataDir(vmType string) (string, error) { data, err := homedir.GetDataHome() if err != nil { |