Files
rustfs/scripts/e2e-run.sh
2025-02-26 15:14:02 +08:00

12 lines
213 B
Bash
Executable File

#!/bin/bash -ex
BIN=$1
VOLUME=$2
chmod +x $BIN
sudo mkdir -p $VOLUME
export RUST_LOG="rustfs=debug,ecstore=debug,s3s=debug,iam=debug"
export RUST_BACKTRACE=full
sudo nohup $BIN $VOLUME > /tmp/rustfs.log 2>&1 &