diff options
author | ramon <ramongomez@us.es> | 2015-11-10 19:10:03 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2015-11-10 19:10:03 +0000 |
commit | 89cb5a5879bcc227bbaf5d90418114cc019511f9 (patch) | |
tree | 90b41d9a7b76bb688bf24e54a41ca81a0a83e808 /admin/Interface | |
parent | 9ca55abe78d36fc1adffa80328464ae4ca176db0 (diff) |
#676: Corregir errata de revisiĆ³n r4727 en llamada a {{{ogGetMountPoint}}}.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@4728 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/Interface')
-rwxr-xr-x | admin/Interface/getConfiguration | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/Interface/getConfiguration b/admin/Interface/getConfiguration index 7a9636f2..88accda0 100755 --- a/admin/Interface/getConfiguration +++ b/admin/Interface/getConfiguration @@ -40,7 +40,7 @@ for ((dsk=1; dsk<=$disks; dsk++)); do # Sistema de archivos para datos (sistema operativo "DATA") [ -z "$soi" -a "$fsi" != "EMPTY" -a "$fsi" != "CACHE" ] && soi="DATA" # Obtener porcentaje de uso. - uso=$(df $(ogMountPoint $dsk $par) | awk '{getline; printf "%d",$5}') + uso=$(df $(ogGetMountPoint $dsk $par) | awk '{getline; printf "%d",$5}') uso=${uso:0} ;; esac |