source: trunk/gsdl3/gs3-enable-soap.sh@ 7888

Last change on this file since 7888 was 7888, checked in by kjdon, 20 years ago

renamed gs3-install-soap.sh to gs3-enable-soap.sh. all it does now is rename a file

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 481 bytes
Line 
1#!/bin/sh
2
3if [ ! -f gs3-setup.sh ]; then
4 echo "You must run this script from within the Greenstone 3 home directory"
5 exit 1
6fi
7
8#check that GSDL3HOME is set
9source gs3-setup.sh
10gsdl3home=$GSDL3HOME
11
12# we just move soap's web.xml.disabled to web.xml
13cd $gsdl3home/comms/soap/soap/webapps/soap/WEB-INF
14
15if [ -f web.xml.disabled ]; then
16 mv web.xml.disabled web.xml
17 echo "Please restart Tomcat for the changes to take effect"
18else
19 echo "SOAP was already enabled"
20fi
21
Note: See TracBrowser for help on using the repository browser.