diff options
author | ramon <ramongomez@us.es> | 2015-11-10 12:21:53 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2015-11-10 12:21:53 +0000 |
commit | 9ca55abe78d36fc1adffa80328464ae4ca176db0 (patch) | |
tree | 382613f20c9a3e0f269ee2c4e4f2988d8ca23ac1 /admin/Interface | |
parent | 5c09bc57f90c436c55160e3a4e0f5765cdb651c5 (diff) |
#676: Activar automáticamente módulo para ZFS; detección correcta de ZPOOL y mostrar datos en tabla de configuración.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@4727 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/Interface')
-rwxr-xr-x | admin/Interface/getConfiguration | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/admin/Interface/getConfiguration b/admin/Interface/getConfiguration index fbed5a98..7a9636f2 100755 --- a/admin/Interface/getConfiguration +++ b/admin/Interface/getConfiguration @@ -18,6 +18,7 @@ for ((dsk=1; dsk<=$disks; dsk++)); do MSDOS) ptt=1 ;; GPT) ptt=2 ;; LVM) ptt=3 ;; + ZPOOL) ptt=4 ;; *) ptt=0 ;; esac # Información de disco (partición 0) @@ -38,7 +39,8 @@ for ((dsk=1; dsk<=$disks; dsk++)); do *) soi=$(getOsVersion $dsk $par 2>/dev/null | cut -f2 -d:) # Sistema de archivos para datos (sistema operativo "DATA") [ -z "$soi" -a "$fsi" != "EMPTY" -a "$fsi" != "CACHE" ] && soi="DATA" - uso=$(df $(ogDiskToDev $dsk $par) | awk '{getline; printf "%d",$5}') + # Obtener porcentaje de uso. + uso=$(df $(ogMountPoint $dsk $par) | awk '{getline; printf "%d",$5}') uso=${uso:0} ;; esac |