zeek/testing/scripts/have-af-packet
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

11 lines
158 B
Bash
Executable File

#!/bin/sh
if [ "$(uname -s)" != "Linux" ]; then
exit 1
fi
if grep -q "DISABLE_AF_PACKET:BOOL=true" "${BUILD}"/CMakeCache.txt; then
exit 1
fi
exit 0