]> git.evergreen-ils.org Git - working/Evergreen.git/blob - config.sh
stamp. html on print, not on alert
[working/Evergreen.git] / config.sh
1 #!/bin/bash
2 # --------------------------------------------------------------------
3 # Copyright (C) 2005  Georgia Public Library Service 
4 # Bill Erickson <highfalutin@gmail.com>
5 # Mike Rylander <mrylander@gmail.com>
6 #
7 # This program is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU General Public License
9 # as published by the Free Software Foundation; either version 2
10 # of the License, or (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 # --------------------------------------------------------------------
17
18
19 # --------------------------------------------------------------------
20 # Prompts the user for config settings and writes a custom config
21 # file based on these settings
22 # --------------------------------------------------------------------
23
24
25 CONFIG_FILE="install.conf";
26 DEFAULT_CONFIG_FILE="install.conf.default";
27
28 function buildConfig {
29
30 #       if [ -f "$CONFIG_FILE" ]; then
31 #               echo "";
32 #               echo "Using existing config file \"$CONFIG_FILE\""; 
33 #               echo "To generate a new config, remove \"$CONFIG_FILE\"";
34 #               echo "";
35 #               sleep 3;        
36 #               exit 0;
37 #       fi
38
39
40         if [ -f "$DEFAULT_CONFIG_FILE" ]; then
41                 source "$DEFAULT_CONFIG_FILE";
42         fi;
43
44
45         echo "";
46         echo "-----------------------------------------------------------------------";
47         echo "Type Enter to select the default"
48         echo "-----------------------------------------------------------------------";
49
50         prompt "Temporary files directory [$TMP] "
51         read X; if [ ! -z "$X" ]; then TMP="$X"; fi;
52
53         prompt "Install prefix [$PREFIX] ";
54         read X; if [ ! -z "$X" ]; then PREFIX="$X"; fi
55
56         BINDIR="$PREFIX/bin/";
57         LIBDIR="$PREFIX/lib/";
58         PERLDIR="$LIBDIR/perl5/";
59         INCLUDEDIR="$PREFIX/include/";
60         ETCDIR="$PREFIX/conf";
61         WEBDIR="$PREFIX/var/web";
62         CGIDIR="$PREFIX/var/cgi-bin";
63         TEMPLATEDIR="$PREFIX/var/templates";
64         CIRCRULESDIR="$PREFIX/var/circ";
65         XSLDIR="$PREFIX/var/xsl";
66
67         prompt "Executables directory [$BINDIR] "
68         read X; if [ ! -z "$X" ]; then BINDIR="$X"; fi;
69
70         prompt "Lib directory [$LIBDIR] "
71         read X; if [ ! -z "$X" ]; then LIBDIR="$X"; fi;
72
73         prompt "Perl directory [$PERLDIR] "
74         read X; if [ ! -z "$X" ]; then PERLDIR="$X"; fi;
75
76         prompt "Include files directory [$INCLUDEDIR] "
77         read X; if [ ! -z "$X" ]; then INCLUDEDIR="$X"; fi;
78
79         prompt "Config files directory [$ETCDIR] "
80         read X; if [ ! -z "$X" ]; then ETCDIR="$X"; fi;
81
82         prompt "Web Root Directory [$WEBDIR] "
83         read X; if [ ! -z "$X" ]; then WEBDIR="$X"; fi;
84
85         prompt "Web CGI Directory [$CGIDIR] "
86         read X; if [ ! -z "$X" ]; then CGIDIR="$X"; fi;
87
88         prompt "Templates directory [$TEMPLATEDIR] "
89         read X; if [ ! -z "$X" ]; then TEMPLATEDIR="$X"; fi;
90
91         prompt "XSL Stylesheets directory [$XSLDIR] "
92         read X; if [ ! -z "$X" ]; then XSLDIR="$X"; fi;
93
94         prompt "Custom circulation rules directory [$CIRCRULESDIR] "
95         read X; if [ ! -z "$X" ]; then CIRCRULESDIR="$X"; fi;
96
97         prompt "Apache2 apxs binary [$APXS2] "
98         read X; if [ ! -z "$X" ]; then APXS2="$X"; fi;
99
100         prompt "Apache2 headers directory [$APACHE2_HEADERS] "
101         read X; if [ ! -z "$X" ]; then APACHE2_HEADERS="$X"; fi;
102
103         prompt "Libxml2 headers directory [$LIBXML2_HEADERS] "
104         read X; if [ ! -z "$X" ]; then LIBXML2_HEADERS="$X"; fi;
105
106         prompt "Build targets [${TARGETS[@]:0}] "
107         read X; if [ ! -z "$X" ]; then TARGETS=("$X"); fi;
108
109         prompt "Bootstrapping Database Driver [$DBDRVR] "
110         read X; if [ ! -z "$X" ]; then DBDRVR="$X"; fi;
111
112         prompt "Bootstrapping Database Host [$DBHOST] "
113         read X; if [ ! -z "$X" ]; then DBHOST="$X"; fi;
114
115         prompt "Bootstrapping Database Name [$DBNAME] "
116         read X; if [ ! -z "$X" ]; then DBNAME="$X"; fi;
117
118         prompt "Bootstrapping Database User [$DBUSER] "
119         read X; if [ ! -z "$X" ]; then DBUSER="$X"; fi;
120
121         prompt "Bootstrapping Database Password [$DBPW] "
122         read X; if [ ! -z "$X" ]; then DBPW="$X"; fi;
123
124         writeConfig;
125 }
126
127 function prompt { echo ""; echo -n "$*"; }
128
129 function writeConfig {
130
131         rm -f "$CONFIG_FILE";
132         echo "Writing installation config to $CONFIG_FILE...";
133
134         _write "PREFIX=\"$PREFIX\"";
135         _write "BINDIR=\"$BINDIR\"";
136         _write "LIBDIR=\"$LIBDIR\"";
137         _write "PERLDIR=\"$PERLDIR\"";
138         _write "INCLUDEDIR=\"$INCLUDEDIR\"";
139
140         _write "TMP=\"$TMP\"";
141         _write "APXS2=\"$APXS2\"";
142         _write "APACHE2_HEADERS=\"$APACHE2_HEADERS\"";
143         _write "LIBXML2_HEADERS=\"$LIBXML2_HEADERS\"";
144
145         _write "WEBDIR=\"$WEBDIR\"";
146         _write "TEMPLATEDIR=\"$TEMPLATEDIR\"";
147         _write "ETCDIR=\"$ETCDIR\"";
148         _write "CIRCRULESDIR=\"$CIRCRULESDIR\"";
149         _write "XSLDIR=\"$XSLDIR\"";
150
151         # print out the targets
152         STR="TARGETS=(";
153         for target in ${TARGETS[@]:0}; do
154                 STR="$STR \"$target\"";
155         done;
156         STR="$STR)";
157         _write "$STR";
158
159         _write "OPENSRFDIR=\"OpenSRF/src/\"";
160         _write "OPENILSDIR=\"Open-ILS/src/\"";
161         _write "EVERGREENDIR=\"Evergreen/\"";
162
163
164         _write "CGIDIR=\"$CGIDIR\"";
165
166         # db vars
167         _write "DBDRVR=\"$DBDRVR\"";
168         _write "DBHOST=\"$DBHOST\"";
169         _write "DBNAME=\"$DBNAME\"";
170         _write "DBUSER=\"$DBUSER\"";
171         _write "DBPW=\"$DBPW\"";
172
173
174         # Now we'll write out the DB bootstrapping config
175         CONFIG_FILE='Open-ILS/src/cgi-bin/setup.pl';
176         rm -f "$CONFIG_FILE";
177         echo "Writing bootstrapping config to $CONFIG_FILE...";
178
179         STR='$main::config{dsn} =';
180                 STR="$STR 'dbi:${DBDRVR}:host=";
181                 STR="${STR}${DBHOST};dbname=";
182                 STR="${STR}${DBNAME}';";
183         _write "$STR"
184
185         STR='$main::config{usr} =';
186                 STR="$STR '$DBUSER';";
187         _write "$STR"
188         
189         STR='$main::config{pw} =';
190                 STR="$STR '$DBPW';";
191         _write "$STR"
192         
193         _write '$main::config{index} = "config.cgi";';
194
195
196         prompt "";
197         prompt "";
198         prompt "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!";
199         prompt "!! If installing openils_all / openils_db !!";
200         prompt "!! Before running 'make install' you MUST !!";
201         prompt "!! create a database for Open-ILS.  Use   !!";
202         prompt "!! the settings that you listed above and !!";
203         prompt "!! the install scripts will create the    !!";
204         prompt "!! database for you.  -miker              !!";
205         prompt "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!";
206         prompt "";
207         prompt "";
208
209         prompt "To write a new config, run 'make config'";
210         prompt "";
211
212 }
213
214 function _write {
215         echo "$*" >> "$CONFIG_FILE";
216 }
217
218
219
220 buildConfig;