changeset 2606:75cd6e570d11 default tip

Update the web server update script to go to the new gdtk server.
author Peter Jacobs <peterj@mech.uq.edu.au>
date Wed, 20 Jul 2022 08:58:55 +1000
parents d43f84d76642
children
files doc/sphinx/update-web-server.sh
diffstat 1 files changed, 4 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/doc/sphinx/update-web-server.sh	Tue Jul 19 21:38:18 2022 +1000
+++ b/doc/sphinx/update-web-server.sh	Wed Jul 20 08:58:55 2022 +1000
@@ -1,15 +1,12 @@
 #! /bin/bash
 
-echo "About to rsync html files to cfcfd.zones.eait.uq.edu.au"
-
-echo "Please enter your username on cfcfd.zones.eait.uq.edu.au:"
-read username
+echo "About to rsync html files to gdtk.zones.eait.uq.edu.au"
 
 echo "A password may have to be supplied for each rsync."
 echo "Note that we assume several external directories"
 echo "(of theses, etc) are available."
 
-DEST=${username}@cfcfd.zones.eait.uq.edu.au:/opt/local/share/httpd/htdocs/cfcfd3-website
+DEST=gdtk:/var/www/htdocs/cfcfd
 
 echo "1. Sphinx-generated HTML docs..."
 rsync -av _build/html/ ${DEST}
@@ -21,8 +18,8 @@
 rsync -av ~/papers/drummond_simulation ${DEST}
 echo "5. IMOC HTML docs..."
 rsync -av ~/cfcfd3/app/imoc/doc/ ${DEST}/imoc/
-echo "6. Doxygen-generated HTML docs..."
-rsync -av ../doxygen/html/ ${DEST}/doxygen/
+# echo "6. Doxygen-generated HTML docs..."
+# rsync -av ../doxygen/html/ ${DEST}/doxygen/
 echo "Done."