summaryrefslogtreecommitdiff
path: root/pkg/domain/infra
diff options
context:
space:
mode:
authorGiuseppe Scrivano <gscrivan@redhat.com>2022-07-12 11:47:30 +0200
committerMatthew Heon <matthew.heon@pm.me>2022-07-26 13:08:11 -0400
commit7b4ebfa657d605d0767be7ccb2607c923ce4311f (patch)
tree7326ed01c4c543029412e11775a30ccdbc3ab7db /pkg/domain/infra
parent3b37095b2b91f6e67db6195af685ce88e7a2519a (diff)
downloadpodman-7b4ebfa657d605d0767be7ccb2607c923ce4311f.tar.gz
podman-7b4ebfa657d605d0767be7ccb2607c923ce4311f.tar.bz2
podman-7b4ebfa657d605d0767be7ccb2607c923ce4311f.zip
podman: always call into SetupRootless
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'pkg/domain/infra')
-rw-r--r--pkg/domain/infra/abi/system.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/domain/infra/abi/system.go b/pkg/domain/infra/abi/system.go
index 0faae01c8..eed80dd79 100644
--- a/pkg/domain/infra/abi/system.go
+++ b/pkg/domain/infra/abi/system.go
@@ -67,6 +67,10 @@ func (ic *ContainerEngine) Info(ctx context.Context) (*define.Info, error) {
}
func (ic *ContainerEngine) SetupRootless(_ context.Context, noMoveProcess bool) error {
+ if !rootless.IsRootless() {
+ return nil
+ }
+
// do it only after podman has already re-execed and running with uid==0.
hasCapSysAdmin, err := unshare.HasCapSysAdmin()
if err != nil {