zeek/auxil/zeek-af_packet-plugin/configure.plugin
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

27 lines
495 B
Bash

#!/bin/sh
#
plugin_usage() {
cat <<EOF
EOF
}
plugin_option() {
case "$1" in
--with-kernel=*)
echo "WARNING: The --with-kernel option has no effect and will be removed in the future." >&2
return 0
;;
--with-latest-kernel*)
echo "WARNING: The --with-latest-kernel option has no effect and will be removed in the future." >&2
return 0
;;
*)
return 1;
;;
esac
}