I am CentOS 7.4 on Dell servers.
Running this command in a script:
kill -SIGUSR2 `ps -ef|grep ${rule}/etc/suricata/suricata.yaml|grep -v grep|awk '{ print $2 }'`
The "ps" part here grabs PID.
What does SIGUSR2 do here?
I see it's "user-defined"; how does that tranlate into actions?