2 # IMPORTANT! This script assumes you have already installed OpenSRF.
5 DEFAULT_USER="sitkastaff"
6 HOMEDIR="/home/${DEFAULT_USER}"
7 BUILDDIR="${HOMEDIR}/evergreen"
8 INSTALLDIR="/srv/openils"
9 BRANCH="production/sitka_2_4"
10 VERSION="2.4.0.sitka.0"
11 STAMP_ID="2_4_0_sitka_0"
12 ALT_STAMP_IDS="rel_2_4_0_sitka_0 rel_2_4_0_sitka_0"
13 SITKACONF="${HOMEDIR}/sysadmin"
16 su -s /bin/bash -l -c "source ~/.bashrc ; $1" $2
21 # grab Sitka config files
22 if [ ! -d "${SITKACONF}" ]
24 # this will fail unless DEFAULT_USER has read access to the repo
25 suwrap "cd ${HOMEDIR} && git clone git+ssh://git@git.sitka.bclibraries.ca/sitka-infra/sysadmin" ${DEFAULT_USER}
27 suwrap "cd ${SITKACONF} && git pull" ${DEFAULT_USER}
30 if [ ! -d "${BUILDDIR}" ]
32 suwrap "cd ${HOMEDIR} && git clone git://git.sitka.bclibraries.ca/sitka/evergreen evergreen" ${DEFAULT_USER}
34 suwrap "cd ${BUILDDIR} && git checkout ${BRANCH}" ${DEFAULT_USER}
37 cd ${BUILDDIR} && make -f Open-ILS/src/extras/Makefile.install ubuntu-precise
38 # by default, CPAN needs some manual input at this point; you can just accept all defaults
41 suwrap "cd ${BUILDDIR} && autoreconf -i" ${DEFAULT_USER}
42 suwrap "cd ${BUILDDIR} && ./configure -C --prefix=${INSTALLDIR} --sysconfdir=${INSTALLDIR}/conf --with-opensrf-headers=${INSTALLDIR}/include/ --with-opensrf-libs=${INSTALLDIR}/lib/ --with-dbi=/usr/lib/dbd/" ${DEFAULT_USER}
43 suwrap "cd ${BUILDDIR} && make" ${DEFAULT_USER}
44 suwrap "cd ${BUILDDIR}/build/i18n && make LOCALE=fr-CA install && make LOCALE=en-CA install" ${DEFAULT_USER}
47 cd ${BUILDDIR} && make STAFF_CLIENT_STAMP_ID=${STAMP_ID} STAFF_CLIENT_VERSION=${VERSION} install
48 chown -R opensrf:opensrf ${INSTALLDIR}
50 # Apache stuff (as root):
51 APACHEFILES="/etc/apache2/eg_vhost.conf /etc/apache2/eg_startup /etc/apache2/sites-available/eg.conf"
52 for APACHEFILE in ${APACHEFILES}
54 cp ${SITKACONF}/files/${APACHEFILE}/${HOSTNAME} ${APACHEFILE}
58 mkdir /etc/apache2/ssl
59 cd /etc/apache2/ssl && openssl req -new -x509 -days 365 -nodes -out server.crt -keyout server.key
62 if [ ! -d "/etc/logrotate.d/evergreen" ]
64 cp ${SITKACONF}/files/etc/logrotate.d/evergreen/${HOSTNAME} /etc/logrotate.d/evergreen
68 # FIXME: ensure osrf conf files point at a real, distinct db!
69 OSRFCONFFILES="${INSTALLDIR}/conf/opensrf.xml ${INSTALLDIR}/conf/opensrf_core.xml"
70 for OSRFCONFFILE in ${OSRFCONFFILES}
73 cp ${SITKACONF}/files/${OSRFCONFFILE}/${HOSTNAME} ${OSRFCONFFILE}
75 if [ ! -d "${HOMEDIR}/.srfsh.xml" ]
77 cp ${SITKACONF}/files/home/opensrf/.srfsh.xml/${HOSTNAME} ${HOMEDIR}/.srfsh.xml
81 cd ${BUILDDIR} && perl Open-ILS/src/support-scripts/eg_db_config --create-offline
84 cd /home/opensrf && wget http://download.dojotoolkit.org/release-1.3.3/dojo-release-1.3.3.tar.gz
85 tar -C ${INSTALLDIR}/var/web/js -xzf /home/opensrf/dojo-release-1.3.3.tar.gz
86 cp -r ${INSTALLDIR}/var/web/js/dojo-release-1.3.3/* ${INSTALLDIR}/var/web/js/dojo/.
88 # 2. set up staff client
89 cd ${INSTALLDIR}/var/web/xul && rm server && rm current
90 cd ${INSTALLDIR}/var/web/xul && ln -s ${STAMP_ID} current && ln -s current/server server
91 for ALT_STAMP_ID in ${ALT_STAMP_IDS}
93 cd ${INSTALLDIR}/var/web/xul && ln -s current ${ALT_STAMP_ID}
96 # 3. install circ scripts and opac skins - DEPRECATED
99 touch ${INSTALLDIR}/var/web/css/skin/default/register_custom.css
100 touch ${INSTALLDIR}/var/web/xul/server/locale/en-CA/patron_custom.properties
101 touch ${INSTALLDIR}/var/web/xul/server/locale/en-CA/common_custom.properties
102 touch ${INSTALLDIR}/var/web/xul/server/locale/en-CA/offline_custom.properties
103 touch ${INSTALLDIR}/var/web/xul/server/locale/en-CA/auth_custom.properties
104 touch ${INSTALLDIR}/var/web/xul/server/locale/en-CA/cat_custom.properties
105 touch ${INSTALLDIR}/var/web/xul/server/locale/en-CA/circ_custom.properties
106 touch ${INSTALLDIR}/var/web/xul/server/locale/en-US/patron_custom.properties
107 touch ${INSTALLDIR}/var/web/xul/server/locale/en-US/common_custom.properties
108 touch ${INSTALLDIR}/var/web/xul/server/locale/en-US/offline_custom.properties
109 touch ${INSTALLDIR}/var/web/xul/server/locale/en-US/auth_custom.properties
110 touch ${INSTALLDIR}/var/web/xul/server/locale/en-US/cat_custom.properties
111 touch ${INSTALLDIR}/var/web/xul/server/locale/en-US/circ_custom.properties
112 touch ${INSTALLDIR}/var/web/xul/server/skin/custom.js
115 cd ${INSTALLDIR}/var/web/opac/locale && cp -fdr en-US en-US-bak && cp -fdr en-CA en-US
118 # ensure apache conf contains deletepatron config (location should be ${INSTALLDIR}/var/web/deletepatron)
119 cd ${INSTALLDIR}/var/web && git clone https://github.com/twirlip/deletepatron.git
120 cd ${INSTALLDIR}/var/web/deletepatron && git checkout eg22 && find . -name "*.pm" | xargs sed -i -e 's|/openils|/srv/openils|g'
121 apt-get install libcgi-session-perl libhtml-template-perl
124 cp ${BUILDDIR}/Open-ILS/src/support-scripts/generate_circ_notices.pl ${INSTALLDIR}/bin
125 cp ${BUILDDIR}/Open-ILS/src/support-scripts/oils_header.pl ${INSTALLDIR}/bin
127 # 8. setup start page
128 if [ ! -d "${INSTALLDIR}/var/web/news" ]
130 mkdir ${INSTALLDIR}/var/web/news
132 NEWSFILES="index.html style.css"
133 for NEWSFILE in ${NEWSFILES}
135 if [ -f "${SITKACONF}/files/${INSTALLDIR}/var/web/news/${NEWSFILE}/${HOSTNAME}" ]
137 cp ${SITKACONF}/files/${INSTALLDIR}/var/web/news/${NEWSFILE}/${HOSTNAME} ${INSTALLDIR}/var/web/news/${NEWSFILE}
141 # 9. make sure opensrf owns all the stuff we just did
142 chown -R opensrf:opensrf ${INSTALLDIR}
143 chown -R opensrf:opensrf /home/opensrf
144 chown -R opensrf:opensrf /var/lock/apache2
146 # 10. staff client stuff
147 apt-get install nsis unzip