diff options
author | jcxifre <jcxifre@unizar.es> | 2011-03-10 13:28:49 +0000 |
---|---|---|
committer | jcxifre <jcxifre@unizar.es> | 2011-03-10 13:28:49 +0000 |
commit | e4736676531eafffac1dc24bfa70bf20d50a0364 (patch) | |
tree | e4674970b1f101c65291d1c1881d3b901a8e5cf3 /installer/opengnsys_update.sh | |
parent | 45f1fe807f1396684b784aa2d67d1736ad888b10 (diff) |
Corregidos:
- error de cambio de permisos del fichero inexistente /opt/opengnsys/www/comandos/gestores/filescripts
- error moviendo ogAdmClient
git-svn-id: https://opengnsys.es/svn/branches/version1.0@1541 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'installer/opengnsys_update.sh')
-rwxr-xr-x | installer/opengnsys_update.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/installer/opengnsys_update.sh b/installer/opengnsys_update.sh index 004c378a..0a3810a8 100755 --- a/installer/opengnsys_update.sh +++ b/installer/opengnsys_update.sh @@ -254,11 +254,9 @@ function updateWebFiles() fi restoreFile $INSTALL_TARGET/www/controlacceso.php # Cambiar permisos para ficheros especiales. - chown -R $APACHE_RUN_USER:$APACHE_RUN_GROUP \ - $INSTALL_TARGET/www/includes \ - $INSTALL_TARGET/www/comandos/gestores/filescripts \ - $INSTALL_TARGET/www/images/iconos + chown -R $APACHE_RUN_USER:$APACHE_RUN_GROUP $INSTALL_TARGET/www/includes $INSTALL_TARGET/www/images/iconos echoAndLog "${FUNCNAME}(): Web files updated successfully." + } # Copiar carpeta de Interface @@ -363,7 +361,7 @@ function recompileClient () # Compilar OpenGnSys Client echoAndLog "${FUNCNAME}(): recompiling OpenGnSys Client" pushd $WORKDIR/opengnsys/admin/Sources/Clients/ogAdmClient - make && mv ogAdmClient ../../../client/shared/bin + make && mv ogAdmClient $INSTALL_TARGET/client/bin if [ $? -ne 0 ]; then echoAndLog "${FUNCNAME}(): error while compiling OpenGnSys Client" hayErrores=1 |