1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
#
# RUNDIR - a newly created directory on the nfs share.
# will exist only when running COMMAND.
#
# LOCALDIR - a directory on the local fs meant to serve as storage space for
# the fetch stage and setup() call
# will exist for setup, fetch stages and when COMMAND is run, but
# not durning check().
#
#
# the command to run
#
COMMAND="$NFSOMETER_CMD"
#
# command description
#
NAME="Custom: $NFSOMETER_CMD"
if [ -n "$NFSOMETER_NAME" ]; then
NAME="$NFSOMETER_NAME"
fi
DESCRIPTION="Custom workload: $NFSOMETER_CMD"
if [ -n "$NFSOMETER_DESC" ]; then
DESCRIPTION="$NFSOMETER_DESC"
fi
# workload_check()
# - no arguments
# - any output to stdout means the check failed
# - use need_* functions from workloads.sh
workload_check()
{
need_env "NFSOMETER_CMD"
}
# workload_setup()
# - no arguments
# - non-zero return indicates a problem
workload_setup()
{
return 0
}
|