1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
package system
import (
"context"
"errors"
"io/ioutil"
"strings"
"github.com/goss-org/goss/util"
)
type KernelParam interface {
Key() string
Exists() (bool, error)
Value() (string, error)
}
type DefKernelParam struct {
key string
}
func NewDefKernelParam(_ context.Context, key string, system *System, config util.Config) KernelParam {
return &DefKernelParam{
key: key,
}
}
func (k *DefKernelParam) ID() string {
return k.key
}
func (k *DefKernelParam) Key() string {
return k.key
}
func (k *DefKernelParam) Exists() (bool, error) {
if _, err := k.Value(); err != nil {
return false, nil
}
return true, nil
}
func (k *DefKernelParam) Value() (string, error) {
keyData, err := ioutil.ReadFile("/proc/sys/" + strings.Replace(k.key, ".", "/", -1))
if err != nil {
return "", errors.New("could not find the given key")
}
return strings.TrimSpace(string(keyData)), nil
}
|