Statistiques
| Révision :

root / bin / get-provisioned-space @ 49

Historique | Voir | Annoter | Télécharger (244 octet)

1
#!/bin/bash
2
# $Id: get-provisioned-space 49 2013-10-10 08:59:11Z kreverch $
3
BINZFS="/sbin/zfs"
4
BINZPOOL="/sbin/zpool"
5

    
6
function usage {
7
  echo "Syntax: $0 zfs_volume_name"1>&2
8
  exit 1
9
}
10

    
11
if [ "$1" == "" ]
12
then
13
   usage
14
else
15

    
16
$BINZFS get volsize -H -t volume |egrep $1
17
$BINZFS get referenced -H $1
18
fi