mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00

- The option to use integers insteads of double was ignored. - Renaming script-level options to remove the ds_ prefix. - Log rotation didn't work. - A set of simple unit tests.
6 lines
208 B
Bash
Executable file
6 lines
208 B
Bash
Executable file
#! /usr/bin/env bash
|
|
#
|
|
# Returns true if Bro has been compiled with support for writer type
|
|
# $1. The type name must match what "bro --help" prints.
|
|
|
|
bro --helper 2>&1 | grep -qi "Supported log formats:.*$1"
|