diff options
author | ramon <ramongomez@us.es> | 2014-08-27 11:51:43 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2014-08-27 11:51:43 +0000 |
commit | aab6c6e237d9865c143dfb5c48d986533c24f66f (patch) | |
tree | 05df0ab28de23480a07263856527bf90144f6853 /client | |
parent | 5acde601217058e1ea38200496146f1be4176b6d (diff) |
#541 #645: Evitar fallos de detección en funciones {{{ogGetRepoIp}}} y {{{ogGetServerIp}}} cuando no se ha dado un valor a la variable {{{ogprotocol}}}.
git-svn-id: https://opengnsys.es/svn/branches/version1.0@4370 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'client')
-rwxr-xr-x | client/engine/Net.lib | 44 |
1 files changed, 29 insertions, 15 deletions
diff --git a/client/engine/Net.lib b/client/engine/Net.lib index 10f55abd..f76dcc11 100755 --- a/client/engine/Net.lib +++ b/client/engine/Net.lib @@ -4,7 +4,7 @@ #@brief Librería o clase Net #@class Net #@brief Funciones básicas de red. -#@version 1.0.2 +#@version 1.0.6 #@warning License: GNU GPLv3+ #*/ @@ -187,20 +187,27 @@ fi #@note Comprobacion segun protocolo de conexion al Repo #@author Antonio J. Doblas Viso. Universidad de Malaga. #@date 2011-02-24 +#@version 1.0.6 - Obtener datos del punto de montaje, evitando fallo si $ogprotocol está vacía. +#@author Ramon Gomez, ETSII Universidad de Sevilla +#@date 2014-08-27 #*/ ## function ogGetRepoIp () { +# Variables locales. +local SOURCE FSTYPE + +# Mostrar ayuda. if [ "$*" == "help" ]; then ogHelp "$FUNCNAME" "$FUNCNAME" "$FUNCNAME => 192.168.0.2" return fi -# Obtener direcciones IP, segun el protocolo de montaje -if [ -n "$OGIMG" ]; then - case "$ogprotocol" in - nfs) mount | grep " on $OGIMG " | cut -f1 -d: ;; - smb) mount | grep " on $OGIMG " | cut -f3 -d/ ;; - esac -fi + +# Obtener direcciones IP, según el tipo de montaje. +eval $(findmnt -P -o SOURCE,FSTYPE $OGIMG) +case "$FSTYPE" in + nfs) echo "$SOURCE" | cut -f1 -d: ;; + cifs) echo "$SOURCE" | cut -f3 -d/ ;; +esac } @@ -215,20 +222,27 @@ fi #@note Comprobacion segun protocolo de conexion al Repo #@author Antonio J. Doblas Viso. Universidad de Malaga. #@date 2011-02-24 +#@version 1.0.6 - Obtener datos del punto de montaje, evitando fallo si $ogprotocol está vacía. +#@author Ramon Gomez, ETSII Universidad de Sevilla +#@date 2014-08-27 #*/ ## function ogGetServerIp () { +# Variables locales. +local SOURCE FSTYPE + +# Mostrar ayuda. if [ "$*" == "help" ]; then ogHelp "$FUNCNAME" "$FUNCNAME" "$FUNCNAME => 192.168.0.2" return fi -# Obtener direcciones IP. -if [ -n "$OPENGNSYS" ]; then - case "$ogprotocol" in - nfs) mount | grep " on $OPENGNSYS " | cut -f1 -d: ;; - smb) mount | grep " on $OPENGNSYS " | cut -f3 -d/ ;; - esac -fi + +# Obtener direcciones IP, según el tipo de montaje. +eval $(findmnt -P -o SOURCE,FSTYPE $OPENGNSYS) +case "$FSTYPE" in + nfs) echo "$SOURCE" | cut -f1 -d: ;; + cifs) echo "$SOURCE" | cut -f3 -d/ ;; +esac } |