scripts/setup/xfstests.zsh
Anna Schumaker 3428879918 Move setup-* and run-* scripts into subdirectories
The common prefixes in these scripts indicate that they should really be
in directories and not the toplevel. I also provide a helper script in
$BIN to assist in calling them on the target VMs

Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
2022-04-26 10:33:01 -04:00

21 lines
437 B
Bash
Executable File

#!/bin/zsh
SERVER=$1
EXPORT=$2
MOUNTPOINT=$3
SCRATCH=$4
SCRATCHMNT=$5
USER=$6
if [ "$#" -ne 6 ]; then
echo "Usage: $0 {server} {export} {mountpoint} {scratch} {scratchmnt} {user}"
exit 1
fi
useradd -m fsgqa 2>/dev/null
groupadd fsgqa 2>/dev/null
useradd --badnames 123456-fsgqa 2>/dev/null
useradd fsgqa2 2>/dev/null
setup.zsh testdirs.zsh $SERVER $EXPORT $MOUNTPOINT $USER
setup.zsh testdirs.zsh $SERVER $SCRATCH $SCRATCHMNT $USER