Merge pull request #13031 from giuseppe/drop-permission-check-privileged-rootless-devices

rootless: drop permission check for devices
This commit is contained in:
OpenShift Merge Robot
2022-01-27 07:12:49 -05:00
committed by GitHub

View File

@ -47,17 +47,6 @@ func addPrivilegedDevices(g *generate.Generator) error {
if _, found := mounts[d.Path]; found {
continue
}
st, err := os.Stat(d.Path)
if err != nil {
if err == unix.EPERM {
continue
}
return err
}
// Skip devices that the user has not access to.
if st.Mode()&0007 == 0 {
continue
}
newMounts = append(newMounts, devMnt)
}
g.Config.Mounts = append(newMounts, g.Config.Mounts...)