diff options
author | Irina Gómez <irinagomez@us.es> | 2021-02-15 10:29:41 +0100 |
---|---|---|
committer | Irina Gómez <irinagomez@us.es> | 2021-02-15 10:29:41 +0100 |
commit | cdcbc9332d0494daf58ffc2de9935a60bd129542 (patch) | |
tree | c58a54b972139bd74f1231038340e0719812a087 | |
parent | 1718dc0aa0e93465b11e76ea90651d56f460c718 (diff) |
#988 opengnsys_export.sh compatibility with 1.1.1c version
-rwxr-xr-x | installer/opengnsys_export.sh | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/installer/opengnsys_export.sh b/installer/opengnsys_export.sh index 1fe7e081..6f45ea17 100755 --- a/installer/opengnsys_export.sh +++ b/installer/opengnsys_export.sh @@ -56,11 +56,6 @@ if ! which realpath &>/dev/null ; then exit 5 fi -# Comprobamos acceso a ficheros de configuración -if ! [ -r $OPENGNSYS/etc/ogserver.json ]; then - echo "$PROG: ERROR: Sin acceso a la configuración de OpenGnsys." | tee -a $FILESAL - exit 3 -fi # Comprobamos que exista el directorio para el archivo de backup BACKUPDIR=$(realpath $(dirname $1) 2>/dev/null) @@ -75,7 +70,16 @@ done # Exportar la base de datos echo "Exportamos la información de la base de datos." source $OPENGNSYS/lib/ogfunctions.sh || exit 1 -source_json_config $OPENGNSYS/etc/ogserver.json +# Comprobamos acceso a ficheros de configuración + +if [ -r $OPENGNSYS/etc/ogserver.json ]; then + source_json_config $OPENGNSYS/etc/ogserver.json +elif [ -r $OPENGNSYS/etc/ogAdmServer.cfg ]; then + source $OPENGNSYS/etc/ogAdmServer.cfg +else + echo "$PROG: ERROR: Sin acceso a la configuración de OpenGnsys." | tee -a $FILESAL + exit 3 +fi # Crear fichero temporal de acceso a la BD MYCNF=$(mktemp /tmp/.my.cnf.XXXXX) |