source: gsdl/trunk/GSI-Makefile@ 18728

Last change on this file since 18728 was 18728, checked in by ak19, 15 years ago
  1. Correction to the make target web-stop-tested which previously prevented the generation of the httpd.conf file upon make configure-web BUT ONLY when the Java code ran it. 2. Undid the changes made in the previous commit (to do with the SERVERNAME placeholder in httpd.conf.in)
File size: 4.2 KB
RevLine 
[18697]1###########################################################################
2#
3# GSI-Makefile -- Greenstone Server Interface makefile
4# A component of the Greenstone digital library software
5# from the New Zealand Digital Library Project at the
6# University of Waikato, New Zealand.
7#
8# Copyright (C) 1999 The New Zealand Digital Library Project
9#
10#
11# This program is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version 2 of the License, or
14# (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24#
25###########################################################################
26
27test-gsdlhome:
28 @ if test -z "${GSDLHOME}" ; then \
29 echo "" ; \
30 echo "Environment variable GSDLHOME not set." ; \
31 echo " This needs to be set to run this Makefile target." ; \
32 echo " Have you run 'source setup.bash'?" ; \
33 echo "" ; \
34 exit 1; \
35 else \
36 echo "Using: " ; \
37 echo " GSDLHOME = ${GSDLHOME}" ; \
38 echo " GSDLOS = ${GSDLOS}" ; \
39 fi
40
41configure-cgi: test-gsdlhome
42 @ echo "Configuring cgi-bin/gsdlsite.cfg" ;
43 @ sed "s@\*\*GSDLHOME\*\*@${GSDLHOME}@g" cgi-bin/gsdlsite.cfg.in > cgi-bin/gsdlsite.cfg ;
44
45
46configure-admin: test-gsdlhome
47 @echo "" ;
48 @echo "Configuring admin user password:" ;
49 encrypted_password=`getpw` ;
50 if [ $$? = "0" ] ; then \
51 echo -e "[admin]\n<enabled>true\n<groups>administrator,colbuilder,all-collections-editor\n<password>$$encrypted_password\n<username>admin" \
52 | txt2db -append "${GSDLHOME}/etc/users.db" ; \
53 fi
54 @echo ""
55
56configure-port: test-gsdlhome
57 @ echo "Enter port number to use:"
58 @ ( read port ; \
59 if test ! -z $$port ; then \
60 echo "Port: $$port" ; \
61 echo "Stopping web server (if running)" ; \
[18706]62 make -f GSI-Makefile web-stop-tested ; \
[18728]63 echo "Setting config file to use port $$port"; \
[18697]64 cat "${GSDLHOME}/apache-httpd/conf/httpd.conf.in" \
65 | sed "s@\*\*PORT\*\*@$$port@g" \
66 | sed "s@\*\*GSDLHOME\*\*@${GSDLHOME}@g" \
67 > "${GSDLHOME}/apache-httpd/conf/httpd.conf" ; \
[18707]68 if test -e Makefile ; then \
69 echo "Type 'make web-start' to start the web server running on port $$port" ; \
70 else \
71 echo "Type 'make -f GSI-Makefile web-start' to start the web server running on port $$port" ; \
72 fi ; \
[18697]73 fi ; \
74 echo "Done" ; )
75
76
77
78MONITOR_SUCCESS="MAKE SUCCESSFUL"
79MONITOR_FAILED="MAKE FAILED"
80MONITOR_FINISHED="MAKE DONE"
81
82configure-apache: test-gsdlhome
83 @ echo "Configuring the apache webserver..." ;
[18728]84 @ ( port=`egrep "^apache.port" ${GSDLHOME}/lib/java/build.properties | awk -F= '{print $$2}'` ; \
[18706]85 echo $$port | make -f GSI-Makefile configure-port ; )
[18728]86 @ if test -e "${GSDLHOME}/apache-httpd/conf/httpd.conf" ; then \
87 echo $(MONITOR_SUCCESS); \
88 else \
89 echo $(MONITOR_FAILED); \
90 fi
[18697]91 @ echo $(MONITOR_FINISHED)
92
93
94configure-web: configure-cgi configure-apache
95
96web-status: test-gsdlhome
97 ${GSDLHOME}/apache-httpd/${GSDLOS}/bin/apachectl status
98
99web-start: test-gsdlhome
100 ${GSDLHOME}/apache-httpd/${GSDLOS}/bin/apachectl start
101 @ echo $(MONITOR_SUCCESS)
102 @ echo $(MONITOR_FINISHED)
103
104web-restart: test-gsdlhome
105 ${GSDLHOME}/apache-httpd/${GSDLOS}/bin/apachectl restart
106 @ echo $(MONITOR_SUCCESS)
107 @ echo $(MONITOR_FINISHED)
108
109web-graceful: test-gsdlhome
110 ${GSDLHOME}/apache-httpd/${GSDLOS}/bin/apachectl graceful
111 @ echo $(MONITOR_SUCCESS)
112 @ echo $(MONITOR_FINISHED)
113
114web-stop-tested:
115 @# This version runs without testing for GSDLHOME
116 @# Useful to be run as a target when we know test-gsdlhome has already
117 @# been done. This avoids a unnecessary repetition of printing
118 @# out the values of GSDLHOME and GSDLOS
119 @ if test -e "${GSDLHOME}/apache-httpd/conf/httpd.conf" ; then \
[18726]120 ${GSDLHOME}/apache-httpd/${GSDLOS}/bin/apachectl stop ; \
[18697]121 fi
122
123web-stop: test-gsdlhome web-stop-tested
[18728]124 @ echo $(MONITOR_SUCCESS)
125 @ echo $(MONITOR_FINISHED)
Note: See TracBrowser for help on using the repository browser.