Ignore:
Timestamp:
2023-11-27T17:22:00+13:00 (6 months ago)
Author:
davidb
Message:

Now checks for a README.txt file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/web/get-installation.sh

    r38433 r38438  
    4242echo ""
    4343
     44echo "Checking for installation specific README instructions ..."
     45wget --no-check-certificate -q -O - https://svn.greenstone.org/gs3-installations/$installation/trunk/README.txt > /dev/null
     46install_readme_status=$?
     47
     48if [ $install_readme_status == 0 ] ; then
     49    echo "... found"
     50    echo "----"
     51    wget --no-check-certificate -q -O - https://svn.greenstone.org/gs3-installations/$installation/trunk/README.txt
     52    echo "----"
     53else
     54    echo "... none found"
     55fi
     56
     57echo ""
     58
    4459if [ $interface_status == 0 ] || [ $site_status == 0 ] ; then
    4560    echo "----"
Note: See TracChangeset for help on using the changeset viewer.