summaryrefslogtreecommitdiffstats
path: root/installer
diff options
context:
space:
mode:
authorramon <ramongomez@us.es>2010-03-22 13:55:27 +0000
committerramon <ramongomez@us.es>2010-03-22 13:55:27 +0000
commit1db2ed867d519d483531a78c30fc8c830ad5fe24 (patch)
treef72d76729558b8eaa2a8764d1fd0a25810da56de /installer
parentd655cc4a71303f86d46bbf5b11afb7c77d25bdfa (diff)
Corrección errata en instalador.
git-svn-id: https://opengnsys.es/svn/trunk@835 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'installer')
-rwxr-xr-xinstaller/opengnsys_update.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/installer/opengnsys_update.sh b/installer/opengnsys_update.sh
index 7cc445e4..ead7cad6 100755
--- a/installer/opengnsys_update.sh
+++ b/installer/opengnsys_update.sh
@@ -209,7 +209,7 @@ function updateWebFiles()
echoAndLog "${FUNCNAME}(): Updating web files..."
backupFile $INSTALL_TARGET/www/controlacceso.php
mv $INSTALL_TARGET/www $INSTALL_TARGET/WebConsole
- rsync --exclude .svn -irplt $WORKDIR/opengnsys/admin/WebConsole $INSTALL_TARGET/www
+ rsync --exclude .svn -irplt $WORKDIR/opengnsys/admin/WebConsole $INSTALL_TARGET
ERRCODE=$?
mv $INSTALL_TARGET/WebConsole $INSTALL_TARGET/www
if [ $ERRCODE != 0 ]; then
@@ -237,6 +237,7 @@ function makeDoxygenFiles()
return 1
fi
mv "$INSTALL_TARGET/www/html" "$INSTALL_TARGET/www/api"
+ rm -fr $INSTALL_TARGET/www/{man,perlmod,rtf}
chown -R $APACHE_RUN_USER:$APACHE_RUN_GROUP $INSTALL_TARGET/www/api
echoAndLog "${FUNCNAME}(): Doxygen web files created successfully."
}