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:
commit
b6084511d2
1 changed files with 3 additions and 6 deletions
|
@ -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') {
|
||||
|
|
Loading…
Add table
Reference in a new issue