From: Eric Sandeen Date: Tue, 6 Nov 2001 22:00:03 +0000 (+0000) Subject: Let xfs_admin read labels and uuids on mounted filesystems X-Git-Tag: v2.0.0~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b58c339aa0d41d1dec34fa426b479699f90974bb;p=thirdparty%2Fxfsprogs-dev.git Let xfs_admin read labels and uuids on mounted filesystems --- diff --git a/db/xfs_admin.sh b/db/xfs_admin.sh index c516ae9f9..1d4749992 100755 --- a/db/xfs_admin.sh +++ b/db/xfs_admin.sh @@ -38,9 +38,9 @@ while getopts "fluL:U:" c do case $c in f) OPTS=$OPTS" -f";; - l) OPTS=$OPTS" -c label";; + l) OPTS=$OPTS" -r -c label";; L) OPTS=$OPTS" -c 'label "$OPTARG"'";; - u) OPTS=$OPTS" -c uuid";; + u) OPTS=$OPTS" -r -c uuid";; U) OPTS=$OPTS" -c 'uuid "$OPTARG"'";; \?) echo $USAGE 1>&2 exit 2