]> code.citadel.org Git - citadel.git/blob - citadel/newinstall.sh
958549151dfb935408f2bcb7018ee0c2165b763a
[citadel.git] / citadel / newinstall.sh
1 #!/bin/sh
2 # $Id$
3 #
4 #   Automatic script to install Citadel on a target system.
5 #   Copyright (C) 2004 Michael Hampton <error@citadel.org>
6 #   Copyright (C) 2004 Art Cancro <ajc@uncensored.citadel.org>
7 #
8 #   This program is free software; you can redistribute it and/or modify
9 #   it under the terms of the GNU General Public License as published by
10 #   the Free Software Foundation; either version 2 of the License, or
11 #   (at your option) any later version.
12 #
13 #   This program is distributed in the hope that it will be useful,
14 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #   GNU General Public License for more details.
17 #
18 #   You should have received a copy of the GNU General Public License
19 #   along with this program; if not, write to the Free Software
20 #   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21 #
22 # Reading this script?  Here's some helpful hints:
23 #
24 # If you're seeing this in your browser, it's probably not what you want.
25 # You can either save it to disk and run it, or do it the easy way:
26 #
27 # wget -q -O - http://easyinstall.citadel.org/install | sh
28 #
29 # Note that this script installs software on your system and so it requires
30 # root privileges.  Feel free to inspect the script to make sure we didn't
31 # do anything stupid...
32 #
33 # We have provided you the source code according to the terms of the respective
34 # software licenses included in the source code packages, even if you choose
35 # not to keep the source code around.  You can always download it again later.
36 #
37 # We install the following versions in this release:
38 # Package      Version                 Status
39 # Citadel      6.27                    Latest
40 # WebCit       5.27                    Latest
41 # libical      0.24.RC4                Latest
42 # Berkeley DB  4.3.21                  Stable
43 # OpenLDAP     2.1.30 stable-20040329  Stable
44
45
46 ###############################################################################
47 #
48 # This is the general stuff we're going to do, in order:
49 #
50 # 1. Gather information about the target system
51 # 2. Present the installation steps (from 1 above) to the user
52 # 3. Present any pre-install customizations to the user
53 # 4. Do the installation
54 #    A. Download any source code files or binary packages required
55 #    B. For native packaging, call the native packaging system to install
56 #    C. If we build our own, compile and install prerequisites then Citadel
57 # 5. Do post-installation setup
58 #
59 # Then call it a day.
60 #
61 ###############################################################################
62
63
64 # Begin user customization area
65 #
66 # These two directories specify where Citadel and its private support
67 # libraries will be installed.  This keeps them safely tucked away from
68 # the rest of your system.  The defaults should be fine for most people.
69 # NB: When binary packages are installed, these settings are ignored!
70 SUPPORT=/usr/local/ctdlsupport
71 CITADEL=/usr/local/citadel
72 WEBCIT=/usr/local/webcit
73 WORKDIR=/tmp
74 BUILD=$WORKDIR/citadel-build.$$
75 LOG=$WORKDIR/citadel-install-log.txt
76 export SUPPORT CITADEL WEBCIT
77
78 MAKEOPTS=""
79
80 # End user customization area
81
82 # We're now exporting a bunch of environment variables, and here's a list:
83 # CITADEL_INSTALLER     Set to "web" to indicate this script
84 # CITADEL               Directory where Citadel is installed
85 # WEBCIT                Directory where WebCit is installed
86 # SUPPORT               Directory where support programs are installed
87 # LDAP_CONFIG           Location of the slapd.conf file
88 # SLAPD_BINARY          Location of the slapd binary
89 # DISTRO_MAJOR          Linux distribution name, if applicable
90 # DISTRO_MINOR          Linux distribution name, if applicable
91 # DISTRO_VERSION        Linux distribution version (major digit) if applicable
92 # CC                    C compiler being used
93 # MAKE                  Make program being used
94 # CFLAGS                C compiler flags
95 # LDFLAGS               Linker flags
96 # IS_UPGRADE            Set to "yes" if upgrading an existing Citadel
97 # CTDL_DIALOG           Where (if at all) the "dialog" program may be found
98
99 # Let Citadel setup recognize the Citadel installer
100 CITADEL_INSTALLER=web
101 export CITADEL_INSTALLER
102
103 DOWNLOAD_SITE=http://easyinstall.citadel.org
104
105 # Original source code packages.
106 DB_SOURCE=db-4.3.21.NC.tar.gz
107 # DB_PATCHES=db-x.x.x.patches
108 ICAL_SOURCE=libical-0.24.RC4.tar.gz
109 LDAP_SOURCE=openldap-stable-20040329.tgz
110 CITADEL_SOURCE=citadel-easyinstall.tar.gz
111 WEBCIT_SOURCE=webcit-easyinstall.tar.gz
112
113 SETUP="Citadel Easy Install"
114
115
116 ##### BEGIN Functions #####
117
118 die () {
119         echo Easy Install is aborting.
120         echo Please report this problem to the Citadel developers.
121         echo Log file: $LOG
122         rm -fr $BUILD
123         exit 1
124 }
125
126
127 determine_distribution () {
128         # First look for Red Hat in general
129         if [ -x /bin/rpm ]; then
130                 RELEASE_FILE=/dev/null
131                 if /bin/rpm -q redhat-release >/dev/null 2>&1; then
132                         DISTRO_MAJOR=RedHat
133                         RELEASE_FILE=/etc/redhat-release
134                 fi
135                 if /bin/rpm -q whitebox-release >/dev/null 2>&1; then
136                         DISTRO_MAJOR=WhiteBox
137                         RELEASE_FILE=/etc/whitebox-release
138                 fi
139                 if /bin/rpm -q fedora-release >/dev/null 2>&1; then
140                         DISTRO_MAJOR=RedHat
141                         DISTRO_MINOR=Fedora
142                         RELEASE_FILE=/etc/fedora-release
143                 fi
144                 # Then look for specific version
145                 ( cat $RELEASE_FILE | grep Enterprise ) >/dev/null 2>&1 && \
146                         DISTRO_MINOR=Enterprise
147                 DISTRO_VERSION=`tr -cd "[^0-9.]" < $RELEASE_FILE | cut -c 1`
148         fi
149
150         # Check for Gentoo
151         if [ -f /etc/gentoo-release ]; then
152                 DISTRO_MAJOR=Gentoo
153         fi
154
155         # Check for Debian
156         # TODO: check for Debian
157 }
158
159 install_ical () {
160         $WGET $DOWNLOAD_SITE/libical-easyinstall.sum
161         SUM=`cat libical-easyinstall.sum`
162         SUMFILE=$SUPPORT/etc/libical-easyinstall.sum
163         if [ -r $SUMFILE ] ; then
164                 OLDSUM=`cat $SUMFILE`
165                 if [ $SUM = $OLDSUM ] ; then
166                         echo "* libical does not need updating."
167                         return
168                 fi
169         fi
170         echo "* Downloading libical..."
171         $WGET $DOWNLOAD_SITE/$ICAL_SOURCE 2>&1 >>$LOG || die
172         echo "* Installing libical..."
173         cd $BUILD 2>&1 >>$LOG || die
174         ( gzip -dc $ICAL_SOURCE | tar -xvf - ) 2>&1 >>$LOG || die
175         cd $BUILD/libical-0.24 2>&1 >>$LOG || die
176         ./configure --prefix=$SUPPORT 2>&1 >>$LOG || die
177         $MAKE $MAKEOPTS 2>&1 >>$LOG || die
178         $MAKE install 2>&1 >>$LOG || die
179         echo "  Complete."
180         echo $SUM >$SUMFILE
181         rm -f $CITADEL/citadel-easyinstall.sum 2>/dev/null
182         rm -f $WEBCIT/webcit-easyinstall.sum 2>/dev/null
183 }
184
185 install_db () {
186         $WGET $DOWNLOAD_SITE/db-easyinstall.sum
187         SUM=`cat db-easyinstall.sum`
188         SUMFILE=$SUPPORT/etc/db-easyinstall.sum
189         if [ -r $SUMFILE ] ; then
190                 OLDSUM=`cat $SUMFILE`
191                 if [ $SUM = $OLDSUM ] ; then
192                         echo "* Berkeley DB does not need updating."
193                         return
194                 fi
195         fi
196         echo "* Downloading Berkeley DB..."
197         $WGET $DOWNLOAD_SITE/$DB_SOURCE 2>&1 >>$LOG || die
198         echo "* Installing Berkeley DB..."
199         cd $BUILD 2>&1 >>$LOG || die
200         ( gzip -dc $DB_SOURCE | tar -xvf - ) 2>&1 >>$LOG || die
201         cd $BUILD/db-4.3.21.NC 2>&1 >>$LOG || die
202         #patch -p0 < ../$DB_PATCHES 2>&1 >>$LOG || die
203         cd $BUILD/db-4.3.21.NC/build_unix 2>&1 >>$LOG || die
204         ../dist/configure --prefix=$SUPPORT --disable-compat185 --disable-cxx --disable-debug --disable-dump185 --disable-java --disable-rpc --disable-tcl --disable-test --without-rpm 2>&1 >>$LOG || die
205         $MAKE $MAKEOPTS 2>&1 >>$LOG || die
206         $MAKE install 2>&1 >>$LOG || die
207         echo "  Complete."
208         echo $SUM >$SUMFILE
209         rm -f $CITADEL/citadel-easyinstall.sum 2>/dev/null
210 }
211
212 install_ldap () {
213         $WGET $DOWNLOAD_SITE/ldap-easyinstall.sum
214         SUM=`cat ldap-easyinstall.sum`
215         SUMFILE=$SUPPORT/etc/ldap-easyinstall.sum
216         if [ -r $SUMFILE ] ; then
217                 OLDSUM=`cat $SUMFILE`
218                 if [ $SUM = $OLDSUM ] ; then
219                         echo "* OpenLDAP does not need updating."
220                         return
221                 fi
222         fi
223         echo "* Downloading OpenLDAP..."
224         $WGET $DOWNLOAD_SITE/$LDAP_SOURCE 2>&1 >>$LOG || die
225         echo "* Installing OpenLDAP..."
226         CFLAGS="${CFLAGS} -I${SUPPORT}/include"
227         CPPFLAGS="${CFLAGS}"
228         LDFLAGS="-L${SUPPORT}/lib -Wl,--rpath -Wl,${SUPPORT}/lib"
229         export CFLAGS CPPFLAGS LDFLAGS
230         cd $BUILD 2>&1 >>$LOG || die
231         ( gzip -dc $LDAP_SOURCE | tar -xvf - ) 2>&1 >>$LOG || die
232         cd $BUILD/openldap-2.1.29 2>&1 >>$LOG || die
233         ./configure --prefix=$SUPPORT --enable-bdb 2>&1 >>$LOG || die
234         $MAKE $MAKEOPTS 2>&1 >>$LOG || die
235         LDAP_CONFIG=$SUPPORT/etc/openldap/slapd.conf
236         export LDAP_CONFIG
237         SLAPD_BINARY=$SUPPORT/libexec/slapd
238         export SLAPD_BINARY
239         $MAKE install 2>&1 >>$LOG || die
240         echo "  Complete."
241         echo $SUM >$SUMFILE
242         rm -f $CITADEL/citadel-easyinstall.sum 2>/dev/null
243 }
244
245
246 install_prerequisites () {
247
248         # Create the support directories if they don't already exist
249
250         mkdir $SUPPORT          2>/dev/null
251         mkdir $SUPPORT/bin      2>/dev/null
252         mkdir $SUPPORT/sbin     2>/dev/null
253         mkdir $SUPPORT/lib      2>/dev/null
254         mkdir $SUPPORT/libexec  2>/dev/null
255         mkdir $SUPPORT/include  2>/dev/null
256         mkdir $SUPPORT/etc      2>/dev/null
257
258         # Now have phun!
259
260         if [ -z "$OK_ICAL" ]
261         then
262                 install_ical
263         fi
264         if [ -z "$OK_DB" ]
265         then
266                 install_db
267         fi
268         if [ -z "$OK_LDAP" ]
269         then
270                 install_ldap
271         fi
272 }
273
274 install_sources () {
275         if [ -f $CITADEL/citadel.config ]
276         then
277                 IS_UPGRADE=yes
278                 echo "* Upgrading your existing Citadel installation."
279         else
280                 IS_UPGRADE=no
281         fi
282
283         CFLAGS="${CFLAGS} -I${SUPPORT}/include"
284         CPPFLAGS="${CFLAGS}"
285         LDFLAGS="-L${SUPPORT}/lib -Wl,--rpath -Wl,${SUPPORT}/lib"
286         export CFLAGS CPPFLAGS LDFLAGS
287
288         DO_INSTALL_CITADEL=yes
289         $WGET $DOWNLOAD_SITE/citadel-easyinstall.sum
290         SUM=`cat citadel-easyinstall.sum`
291         SUMFILE=$CITADEL/citadel-easyinstall.sum
292         if [ -r $SUMFILE ] ; then
293                 OLDSUM=`cat $SUMFILE`
294                 if [ $SUM = $OLDSUM ] ; then
295                         echo "* Citadel does not need updating."
296                         DO_INSTALL_CITADEL=no
297                 fi
298         fi
299
300         if [ $DO_INSTALL_CITADEL = yes ] ; then
301                 echo "* Downloading Citadel..."
302                 $WGET $DOWNLOAD_SITE/$CITADEL_SOURCE 2>&1 >>$LOG || die
303                 echo "* Installing Citadel..."
304                 cd $BUILD 2>&1 >>$LOG || die
305                 ( gzip -dc $CITADEL_SOURCE | tar -xvf - ) 2>&1 >>$LOG || die
306                 cd $BUILD/citadel 2>&1 >>$LOG || die
307                 if [ -z "$OK_DB" ]
308                 then
309                         ./configure --prefix=$CITADEL --with-db=$SUPPORT --with-pam --enable-autologin --with-ldap --with-libical --disable-threaded-client 2>&1 >>$LOG || die
310                 else
311                         ./configure --prefix=$CITADEL --with-db=$OK_DB --with-pam --enable-autologin --with-ldap --with-libical --disable-threaded-client 2>&1 >>$LOG || die
312                 fi
313                 $MAKE $MAKEOPTS 2>&1 >>$LOG || die
314                 if [ $IS_UPGRADE = yes ]
315                 then
316                         echo "* Performing Citadel upgrade..."
317                         $MAKE upgrade 2>&1 >>$LOG || die
318                 else
319                         echo "* Performing Citadel install..."
320                         $MAKE install 2>&1 >>$LOG || die
321                         useradd -c "Citadel service account" -d $CITADEL -s $CITADEL/citadel citadel 2>&1 >>$LOG
322                 fi
323                 echo $SUM >$SUMFILE
324         fi
325
326         DO_INSTALL_WEBCIT=yes
327         $WGET $DOWNLOAD_SITE/webcit-easyinstall.sum
328         SUM=`cat webcit-easyinstall.sum`
329         SUMFILE=$WEBCIT/webcit-easyinstall.sum
330         if [ -r $SUMFILE ] ; then
331                 OLDSUM=`cat $SUMFILE`
332                 if [ $SUM = $OLDSUM ] ; then
333                         echo "* WebCit does not need updating."
334                         DO_INSTALL_WEBCIT=no
335                 fi
336         fi
337
338         if [ $DO_INSTALL_WEBCIT = yes ] ; then
339                 echo "* Downloading WebCit..."
340                 $WGET $DOWNLOAD_SITE/$WEBCIT_SOURCE 2>&1 >>$LOG || die
341                 echo "* Installing WebCit..."
342                 cd $BUILD 2>&1 >>$LOG || die
343                 ( gzip -dc $WEBCIT_SOURCE | tar -xvf - ) 2>&1 >>$LOG || die
344                 cd $BUILD/webcit 2>&1 >>$LOG || die
345                 ./configure --prefix=$WEBCIT --with-libical 2>&1 >>$LOG || die
346                 $MAKE $MAKEOPTS 2>&1 >>$LOG || die
347                 $MAKE install 2>&1 >>$LOG || die
348                 echo "  Complete."
349                 echo $SUM >$SUMFILE
350         fi
351 }
352
353
354 do_config () {
355         echo "* Configuring your system ..."
356
357         if [ x$IS_UPGRADE == xyes ] ; then
358                 echo Upgrading your existing Citadel installation.
359                 #$CITADEL/setup -q || die
360                 $CITADEL/setup </dev/tty || die
361         else
362                 echo This is a new Citadel installation.
363                 $CITADEL/setup </dev/tty || die
364         fi
365
366         $WEBCIT/setup </dev/tty || die
367 }
368
369
370
371 ##### END Functions #####
372
373 ##### BEGIN main #####
374
375 # 1. Gather information about the target system
376
377 [ -n "$MAKE" ] && [ -x `which gmake` ] && MAKE=`which gmake`
378 [ -z "$MAKE" ] && [ -x `which make` ] && MAKE=`which make`
379 clear
380
381 os=`uname`
382
383 #[ -n "$WGET" ] && [ -x `which wget` ] && WGET=`which wget`
384 #[ -z "$WGET" ] && [ -x `which curl` ] && WGET=`which curl`\ -O
385
386 [ -n "$WGET" ] && [ -x `which curl` ] && WGET=`which curl`\ -O
387 [ -z "$WGET" ] && [ -x `which wget` ] && WGET=`which wget`
388
389 echo MAKE is $MAKE
390 echo WGET is $WGET 
391
392 # 1A. Do we use the native packaging system or build our own copy of Citadel?
393
394 if [ "$os" = "Linux" ]; then
395         determine_distribution
396 elif [ "$os" = "FreeBSD" ]; then
397         # TODO: We detect FreeBSD but the port is still out of date...
398         DISTRO_MAJOR=FreeBSD
399 elif [ "$os" = "Darwin" ]; then
400         # TODO: Deal with Apple weirdness
401         DISTRO_MAJOR=Darwin
402 fi
403
404
405 rm -rf $BUILD
406 mkdir -p $BUILD
407 cd $BUILD
408
409
410 # 2. Present the installation steps (from 1 above) to the user
411 clear
412 if dialog --clear </dev/tty ; then
413         CTDL_DIALOG=`which dialog`
414         export CTDL_DIALOG
415 fi
416 clear
417
418 echo "$SETUP will perform the following actions:"
419 echo ""
420 echo "Installation:"
421 echo "* Download/install supporting libraries (if needed)"
422 echo "* Download/install Citadel (if needed)"
423 echo "* Download/install WebCit (if needed)"
424 echo ""
425 echo "Configuration:"
426 echo "* Configure Citadel"
427 echo "* Configure WebCit"
428 echo ""
429 echo -n "Perform the above installation steps now? "
430 read yesno </dev/tty
431
432 if [ "`echo $yesno | cut -c 1 | tr N n`" = "n" ]; then
433         exit 2
434 fi
435
436 echo ""
437 echo "Command output will not be sent to the terminal."
438 echo "To view progress, see the $LOG file."
439 echo ""
440
441 # 3. Present any pre-install customizations to the user
442
443 # TODO: enter in the configuration dialogs
444
445 # Configure Citadel
446
447 # Configure WebCit
448
449 # 4. Do the installation
450
451 # 4A. Download any source code files or binary packages required
452
453 if [ "$prepackaged" ]; then
454         download_packages
455
456 # 4B. For native packaging, call the native packaging system to install
457
458         install_packages
459 else
460
461 # 4C. If we build our own, compile and install prerequisites then Citadel
462
463         install_prerequisites
464         install_sources
465 fi
466
467 # 5. Do post-installation setup
468         rm -fr $BUILD
469         do_config
470 ##### END main #####