22 lines
413 B
Plaintext
22 lines
413 B
Plaintext
#!@BUILD_SHEBANG@
|
|
|
|
set -ex
|
|
|
|
if [ "x$EUID" = "x" ] ; then
|
|
EUID=`id -u`
|
|
fi
|
|
|
|
if [ "$EUID" != 0 ] ; then
|
|
exit 99
|
|
fi
|
|
|
|
if ! which mkfs.reiserfs >/dev/null 2>&1; then
|
|
echo "mkfs.reiserfs not installed; cannot test reiserfs."
|
|
exit 99
|
|
fi
|
|
|
|
"@builddir@/VasEBoot-fs-tester" reiserfs
|
|
|
|
# Kernels since at least 4.15 can not mount ReiserFS filesystems of the old format.
|
|
#"@builddir@/VasEBoot-fs-tester" reiserfs_old
|