diff options
author | antoniodoblas <adv@uma.es> | 2019-05-16 13:09:54 +0200 |
---|---|---|
committer | antoniodoblas <adv@uma.es> | 2019-05-16 13:09:54 +0200 |
commit | e1431a721a6d5aa2cff9e3d34897ab3572dcbf2d (patch) | |
tree | e4d25635cbc9f823231d4f9c490f468d88f1df4b | |
parent | 841632e596422b692e60294fbdc425c40ec26c60 (diff) |
#910
-rwxr-xr-x | client/shared/scripts/updateCache | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/client/shared/scripts/updateCache b/client/shared/scripts/updateCache index 7c3f4534..beb5e507 100755 --- a/client/shared/scripts/updateCache +++ b/client/shared/scripts/updateCache @@ -35,6 +35,9 @@ #@version 1.1 - Control de errores en transferencia multicast (ticket #781) #@author Irina Gomez, ETSII Universidad de Sevilla #@date 2017/04/20 +@version 1.1 - Verifar existencia de la imagen (ticket #910) +#@author antonio J. Doblas Viso, Universidad de Malaga +#@date 2019/05/16 #*/ ## PROG="$(basename $0)" @@ -85,7 +88,8 @@ if ! $(ogFindCache >/dev/null); then fi # comprobar si la imagen existe (.img, .img.diff o directorio) -REPOFILE=$(ogGetPath "REPO" "/$2") || exit $(ogRaiseError session $OG_ERR_NOTFOUND "REPO /$2"; echo $?) +REPOFILE=$(ogGetPath "REPO" "/$2") +[ -n "$REPOFILE" ] || exit $(ogRaiseError session $OG_ERR_NOTFOUND "REPO /$2"; echo $?) ogEcho log session "$MSG_SCRIPTS_UPDATECACHE_DOUPDATE" # Distingo si es monolitica o sincronizable |