Remove --namespace flag from Podman root

Signed-off-by: Matt Heon <mheon@redhat.com>
This commit is contained in:
Matt Heon
2023-02-21 10:30:28 -05:00
parent 89d0ccd195
commit c4fe0af2aa
4 changed files with 3 additions and 7 deletions

View File

@ -428,7 +428,7 @@ func makeRuntime(runtime *Runtime) (retErr error) {
}
if runtime.config.Engine.Namespace != "" {
return fmt.Errorf("namespaces are not supported by this version of Libpod: %w", define.ErrNotImplemented)
return fmt.Errorf("namespaces are not supported by this version of Libpod, please unset the `namespace` field in containers.conf: %w", define.ErrNotImplemented)
}
needsUserns := os.Geteuid() != 0