1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2025-03-31 04:04:51 +00:00

Merge pull request #1694 from marquiz/devel/selinux

source/kernel: silence misleading error on selinux detection
This commit is contained in:
Kubernetes Prow Robot 2024-05-06 00:47:56 -07:00 committed by GitHub
commit b6084511d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,14 +32,11 @@ func SelinuxEnabled() (bool, error) {
return false, err
}
selinuxBase := filepath.Join(sysfsBase, "selinux")
if _, err := os.Stat(selinuxBase); os.IsNotExist(err) {
status, err := os.ReadFile(filepath.Join(sysfsBase, "selinux", "enforce"))
if os.IsNotExist(err) {
klog.V(1).InfoS("selinux not available on the system")
return false, nil
}
status, err := os.ReadFile(filepath.Join(selinuxBase, "enforce"))
if err != nil {
} else if err != nil {
return false, err
}
if status[0] == byte('1') {