diff options
author | Jason T. Greene <jason.greene@redhat.com> | 2022-01-29 03:10:28 -0600 |
---|---|---|
committer | Jason T. Greene <jason.greene@redhat.com> | 2022-02-16 03:49:17 -0600 |
commit | c74f8f04fd368ce74e35cc081e32133f7502d89e (patch) | |
tree | 1a098c2671edeaef87996fcdad018d1171122d41 /pkg/machine/qemu/config.go | |
parent | 8f5ba05ec4e0f58da80137f24fcb4ab27a2998fe (diff) | |
download | podman-c74f8f04fd368ce74e35cc081e32133f7502d89e.tar.gz podman-c74f8f04fd368ce74e35cc081e32133f7502d89e.tar.bz2 podman-c74f8f04fd368ce74e35cc081e32133f7502d89e.zip |
Introduce podman machine init --root=t|f and podman machine set --root=t|f
Switch default to rootless for mac and windows
Signed-off-by: Jason T. Greene <jason.greene@redhat.com>
Diffstat (limited to 'pkg/machine/qemu/config.go')
-rw-r--r-- | pkg/machine/qemu/config.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/machine/qemu/config.go b/pkg/machine/qemu/config.go index e76509bb1..c619b7dd4 100644 --- a/pkg/machine/qemu/config.go +++ b/pkg/machine/qemu/config.go @@ -33,6 +33,8 @@ type MachineVM struct { QMPMonitor Monitor // RemoteUsername of the vm user RemoteUsername string + // Whether this machine should run in a rootful or rootless manner + Rootful bool } type Mount struct { |