mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-22 04:59:34 +01:00
13 lines
360 B
Bash
13 lines
360 B
Bash
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
|
|
. "$DIR/../prelude.sh"
|
|
|
|
cd src
|
|
|
|
set -o verbose
|
|
set -o errexit
|
|
activate_venv
|
|
$python buildscripts/resmoke.py generate-fuzz-config --template evergreen/do_jepsen_setup --output jepsen-mongodb/resources
|
|
|
|
echo "Print config fuzzer generated mongod.conf"
|
|
cat jepsen-mongodb/resources/mongod.conf
|