mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-28 16:24:56 +01:00
eb3111bf12
GitOrigin-RevId: a712ee5be7fb1cf3738a1c91e444f3d9d43f85d7
15 lines
548 B
Bash
15 lines
548 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 ../jepsen/docker/control/mongodb/resources --output ../jepsen/docker/control/mongodb/resources --disableEncryptionFuzzing
|
|
|
|
echo "Print config fuzzer generated mongod.conf"
|
|
cat ../jepsen/docker/control/mongodb/resources/mongod.conf
|
|
echo "Print config fuzzer generated mongos.conf"
|
|
cat ../jepsen/docker/control/mongodb/resources/mongos.conf
|