Changeset 6459


Ignore:
Timestamp:
2004-01-12T16:32:46+13:00 (20 years ago)
Author:
kjdon
Message:

now edits the soap deployment script

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/gs3-finalise.sh

    r6433 r6459  
    55#check that GSDL3HOME is set
    66if test -z "$GSDL3HOME" ; then
    7   echo "You need to 'source gs3-setup.sh' before running the finalise script"
     7  echo "You need to 'source gs3-setup.sh' before running this script"
    88 exit;
    99fi
     
    6767
    6868
    69 # We also edit the GSDL3 launching script
     69# We also edit the GSDL3 launching script and the SOAP deployment script
    7070if [ "$hostname" != "localhost" ] ; then
    7171    sed "s|localhost|${hostname}|" gs3-launch.sh > gs3-launch.tmp && mv gs3-launch.tmp gs3-launch.sh
     72    sed "s|localhost|${hostname}|" gs3-soap-deploy-site.sh > gs3-soap.tmp && mv gs3-soap.tmp gs3-soap-deploy-site.sh
     73   
    7274fi
    7375if [ "$portnumber" != "8080" ] ; then
    7476    sed "s|8080|${portnumber}|" gs3-launch.sh > gs3-launch.tmp && mv gs3-launch.tmp gs3-launch.sh
     77    sed "s|8080|${portnumber}|" gs3-soap-deploy-site.sh > gs3-soap.tmp && mv gs3-soap.tmp gs3-soap-deploy-site.sh
    7578fi
    7679
    7780# Make the GSDL3 script executable
    78 chmod u+x gs3-launch.sh
     81chmod a+x gs3-launch.sh
     82chmod a+x gs3-soap-deploy-site.sh
    7983
    8084# And provide a nice little postscript
Note: See TracChangeset for help on using the changeset viewer.