blob: 3340f2d4a045e22b0131c06b0e1fb4f59581ec24 (
plain) (
tree)
|
|
#!/bin/sh
if [ "$ROLE" = "node" ]; then
exec ./dexcon-simulation -config config.toml
elif [ "$ROLE" = "peer-server" ]; then
exec ./dexcon-simulation-peer-server -config config.toml
elif [ "$ROLE" = "scheduler" ]; then
exec ./dexcon-simulation-with-scheduler -config config.toml
fi
|