Match case for variables in sysinfo pkg
I noticied an inconsistency when reviewing docker/pull/20692. Changing Ip to IP and Nf to NF. More info: The golang folks recommend that you keep the initials consistent: https://github.com/golang/go/wiki/CodeReviewComments#initialisms. Signed-off-by: Christy Perez <christy@linux.vnet.ibm.com>
This commit is contained in:
parent
7af82a95e3
commit
eb94bd7385
2 changed files with 4 additions and 4 deletions
|
@ -19,10 +19,10 @@ type SysInfo struct {
|
||||||
IPv4ForwardingDisabled bool
|
IPv4ForwardingDisabled bool
|
||||||
|
|
||||||
// Whether bridge-nf-call-iptables is supported or not
|
// Whether bridge-nf-call-iptables is supported or not
|
||||||
BridgeNfCallIptablesDisabled bool
|
BridgeNFCallIPTablesDisabled bool
|
||||||
|
|
||||||
// Whether bridge-nf-call-ip6tables is supported or not
|
// Whether bridge-nf-call-ip6tables is supported or not
|
||||||
BridgeNfCallIP6tablesDisabled bool
|
BridgeNFCallIP6TablesDisabled bool
|
||||||
|
|
||||||
// Whether the cgroup has the mountpoint of "devices" or not
|
// Whether the cgroup has the mountpoint of "devices" or not
|
||||||
CgroupDevicesEnabled bool
|
CgroupDevicesEnabled bool
|
||||||
|
|
|
@ -50,8 +50,8 @@ func New(quiet bool) *SysInfo {
|
||||||
sysInfo.CgroupDevicesEnabled = ok
|
sysInfo.CgroupDevicesEnabled = ok
|
||||||
|
|
||||||
sysInfo.IPv4ForwardingDisabled = !readProcBool("/proc/sys/net/ipv4/ip_forward")
|
sysInfo.IPv4ForwardingDisabled = !readProcBool("/proc/sys/net/ipv4/ip_forward")
|
||||||
sysInfo.BridgeNfCallIptablesDisabled = !readProcBool("/proc/sys/net/bridge/bridge-nf-call-iptables")
|
sysInfo.BridgeNFCallIPTablesDisabled = !readProcBool("/proc/sys/net/bridge/bridge-nf-call-iptables")
|
||||||
sysInfo.BridgeNfCallIP6tablesDisabled = !readProcBool("/proc/sys/net/bridge/bridge-nf-call-ip6tables")
|
sysInfo.BridgeNFCallIP6TablesDisabled = !readProcBool("/proc/sys/net/bridge/bridge-nf-call-ip6tables")
|
||||||
|
|
||||||
// Check if AppArmor is supported.
|
// Check if AppArmor is supported.
|
||||||
if _, err := os.Stat("/sys/kernel/security/apparmor"); !os.IsNotExist(err) {
|
if _, err := os.Stat("/sys/kernel/security/apparmor"); !os.IsNotExist(err) {
|
||||||
|
|
Loading…
Reference in a new issue