summaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
Diffstat (limited to 'libpod')
-rw-r--r--libpod/oci_linux.go2
-rw-r--r--libpod/runtime.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/libpod/oci_linux.go b/libpod/oci_linux.go
index 335a7eec3..210ba57d1 100644
--- a/libpod/oci_linux.go
+++ b/libpod/oci_linux.go
@@ -20,7 +20,7 @@ import (
)
func (r *OCIRuntime) moveConmonToCgroup(ctr *Container, cgroupParent string, cmd *exec.Cmd) error {
- if os.Getuid() == 0 {
+ if os.Geteuid() == 0 {
if r.cgroupManager == SystemdCgroupsManager {
unitName := createUnitName("libpod-conmon", ctr.ID())
diff --git a/libpod/runtime.go b/libpod/runtime.go
index da5d9fa70..c405eb773 100644
--- a/libpod/runtime.go
+++ b/libpod/runtime.go
@@ -561,7 +561,7 @@ func makeRuntime(runtime *Runtime) (err error) {
// empty state only creates a single file
// As such, it's not really a performance concern
if os.IsNotExist(err) {
- if os.Getuid() != 0 {
+ if os.Geteuid() != 0 {
aliveLock.Unlock()
locked = false
if err2 := runtime.refreshRootless(); err2 != nil {