diff options
author | Jason T. Greene <jason.greene@redhat.com> | 2022-03-08 15:27:40 -0600 |
---|---|---|
committer | Jason T. Greene <jason.greene@redhat.com> | 2022-03-18 15:06:57 -0500 |
commit | 76a910b16934cc801fabc5dfa2c6c25731efbe97 (patch) | |
tree | 69b6d55dec1d495bb8a20955faf0c9a6d564a68b /pkg/machine/qemu/machine.go | |
parent | 44e9b539eed70b8efe023a035fcf48a8acaa0d06 (diff) | |
download | podman-76a910b16934cc801fabc5dfa2c6c25731efbe97.tar.gz podman-76a910b16934cc801fabc5dfa2c6c25731efbe97.tar.bz2 podman-76a910b16934cc801fabc5dfa2c6c25731efbe97.zip |
Improve agent install message to add restart instructions
Signed-off-by: Jason T. Greene <jason.greene@redhat.com>
Diffstat (limited to 'pkg/machine/qemu/machine.go')
-rw-r--r-- | pkg/machine/qemu/machine.go | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pkg/machine/qemu/machine.go b/pkg/machine/qemu/machine.go index 3df52cf9d..2f399b60e 100644 --- a/pkg/machine/qemu/machine.go +++ b/pkg/machine/qemu/machine.go @@ -1099,16 +1099,15 @@ func waitAndPingAPI(sock string) { func waitAPIAndPrintInfo(forwardState apiForwardingState, forwardSock string, rootFul bool, name string) { if forwardState != noForwarding { + suffix := "" + if name != machine.DefaultMachineName { + suffix = " " + name + } waitAndPingAPI(forwardSock) if !rootFul { fmt.Printf("\nThis machine is currently configured in rootless mode. If your containers\n") fmt.Printf("require root permissions (e.g. ports < 1024), or if you run into compatibility\n") fmt.Printf("issues with non-podman clients, you can switch using the following command: \n") - - suffix := "" - if name != machine.DefaultMachineName { - suffix = " " + name - } fmt.Printf("\n\tpodman machine set --rootful%s\n\n", suffix) } @@ -1122,8 +1121,9 @@ func waitAPIAndPrintInfo(forwardState apiForwardingState, forwardSock string, ro fmt.Printf("\nThe system helper service is not installed; the default Docker API socket\n") fmt.Printf("address can't be used by podman. ") if helper := findClaimHelper(); len(helper) > 0 { - fmt.Printf("If you would like to install it run the\nfollowing command:\n") - fmt.Printf("\n\tsudo %s install\n\n", helper) + fmt.Printf("If you would like to install it run the\nfollowing commands:\n") + fmt.Printf("\n\tsudo %s install\n", helper) + fmt.Printf("\tpodman machine stop%s; podman machine start%s\n\n", suffix, suffix) } case machineLocal: fmt.Printf("\nAnother process was listening on the default Docker API socket address.\n") |