From 3d2beda89a4d7feefeffe57e7bc8309f61dcedee Mon Sep 17 00:00:00 2001 From: irina Date: Mon, 5 Feb 2018 11:22:35 +0000 Subject: opengnsys_export.sh: Se muestra error si el comando 'realpath' no está instalado MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://opengnsys.es/svn/branches/version1.1@5587 a21b9725-9963-47de-94b9-378ad31fedc9 --- installer/opengnsys_export.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/installer/opengnsys_export.sh b/installer/opengnsys_export.sh index 919502a6..6feac426 100755 --- a/installer/opengnsys_export.sh +++ b/installer/opengnsys_export.sh @@ -7,6 +7,8 @@ #@exception 2 Sólo ejecutable por usuario root. #@exception 3 Sin acceso a la configuración de OpenGnsys. #@exception 4 No existe el directorio de backup. +#@exception 5 Es necesario instalar el comando realpath. +#@warning This script uses "realpath" command. #@version 1.1.0 - Versión inicial. #@author Irina Gómez - ETSII Univ. Sevilla #@date 2016-10-18 @@ -42,6 +44,12 @@ if [ "$USER" != "root" ]; then exit 2 fi +# Comprobamos que esté instalado el comando realpath +if ! which realpath &>/dev/null ; then + echo "Need to install \"realpath\"." + exit 5 +fi + # Comprobamos acceso a ficheros de configuración if ! [ -r $OPENGNSYS/etc/ogAdmServer.cfg ]; then echo "$PROG: ERROR: Sin acceso a la configuración de OpenGnsys." | tee -a $FILESAL -- cgit v1.2.3-18-g5258