Skip to content

Commit

Permalink
added CONFIG_PROC_EVENTS to check-requirements
Browse files Browse the repository at this point in the history
Check if the kernel has support for the Process Events Connector feature,
to see if we can use it.

https://lwn.net/Articles/157150/
  • Loading branch information
gustavo-iniguez-goya committed Sep 30, 2023
1 parent 85a3d7e commit c22e358
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions daemon/core/system.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,10 @@ func CheckSysRequirements() {
"Regexps": [
"CONFIG_NETFILTER_NETLINK=[my]",
"CONFIG_NETFILTER_NETLINK_QUEUE=[my]",
"CONFIG_NETFILTER_NETLINK_ACCT=[my]"
"CONFIG_NETFILTER_NETLINK_ACCT=[my]",
"CONFIG_PROC_EVENTS=[my]"
],
"Reason": " * NETLINK extensions not supported by this kernel (CONFIG_NETFILTER_NETLINK, CONFIG_NETFILTER_NETLINK_QUEUE, CONFIG_NETFILTER_NETLINK_ACCT)."
"Reason": " * NETLINK extensions not supported by this kernel (CONFIG_NETFILTER_NETLINK, CONFIG_NETFILTER_NETLINK_QUEUE, CONFIG_NETFILTER_NETLINK_ACCT or CONFIG_PROC_EVENTS)."
}
},
{
Expand Down

0 comments on commit c22e358

Please sign in to comment.