18 lines
257 B
Text
18 lines
257 B
Text
#!@BUILD_SHEBANG@
|
|
|
|
set -e
|
|
|
|
if [ "x$EUID" = "x" ] ; then
|
|
EUID=`id -u`
|
|
fi
|
|
|
|
if [ "$EUID" != 0 ] ; then
|
|
exit 99
|
|
fi
|
|
|
|
if ! which mkfs.jfs >/dev/null 2>&1; then
|
|
echo "mkfs.jfs not installed; cannot test JFS."
|
|
exit 99
|
|
fi
|
|
|
|
"@builddir@/grub-fs-tester" jfs
|