rootless: fix potential panic in shouldUseRootlessCgroupManager
Signed-off-by: Ace-Tang <aceapril@126.com>
This commit is contained in:
parent
079817cc26
commit
714a4d466a
|
@ -15,13 +15,14 @@ func shouldUseRootlessCgroupManager(context *cli.Context) (bool, error) {
|
|||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
// nil b stands for "auto detect"
|
||||
if b != nil {
|
||||
return *b, nil
|
||||
}
|
||||
// nil b stands for "auto detect"
|
||||
}
|
||||
if context.GlobalBool("systemd-cgroup") {
|
||||
return false, nil
|
||||
|
||||
if context.GlobalBool("systemd-cgroup") {
|
||||
return false, nil
|
||||
}
|
||||
}
|
||||
if os.Geteuid() != 0 {
|
||||
return true, nil
|
||||
|
|
Loading…
Reference in New Issue