]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - growfs/xfs_info.sh
xfs: account for the refcount btree in the alloc/free log reservation
[thirdparty/xfsprogs-dev.git] / growfs / xfs_info.sh
CommitLineData
2bd0ea18
NS
1#!/bin/sh -f
2#
0d3e0b37 3# Copyright (c) 2000-2001 Silicon Graphics, Inc. All Rights Reserved.
dfc130f3 4#
2bd0ea18
NS
5
6OPTS=""
9440d84d 7USAGE="Usage: xfs_info [-V] [-t mtab] mountpoint"
2bd0ea18 8
9440d84d 9while getopts "t:V" c
2bd0ea18
NS
10do
11 case $c in
12 t) OPTS="-t $OPTARG" ;;
138aab65
CH
13 V) xfs_growfs -p xfs_info -V
14 status=$?
15 exit $status
16 ;;
2bd0ea18
NS
17 *) echo $USAGE 1>&2
18 exit 2
19 ;;
20 esac
21done
50b1dd46 22set -- extra "$@"
2bd0ea18
NS
23shift $OPTIND
24case $# in
50b1dd46 25 1) xfs_growfs -p xfs_info -n $OPTS "$1"
2bd0ea18
NS
26 status=$?
27 ;;
28 *) echo $USAGE 1>&2
29 exit 2
30 ;;
31esac
32exit $status