| 1 | #!/bin/bash |
| 2 | # IMPORTANT! This script assumes you have already installed OpenSRF. |
| 3 | |
| 4 | HOSTNAME="nonprod-24" |
| 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" |
| 14 | |
| 15 | suwrap() { |
| 16 | su -s /bin/bash -l -c "source ~/.bashrc ; $1" $2 |
| 17 | } |
| 18 | |
| 19 | # as DEFAULT_USER |
| 20 | |
| 21 | # grab Sitka config files |
| 22 | if [ ! -d "${SITKACONF}" ] |
| 23 | then |
| 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} |
| 26 | fi |
| 27 | suwrap "cd ${SITKACONF} && git pull" ${DEFAULT_USER} |
| 28 | |
| 29 | # checkout EG source |
| 30 | if [ ! -d "${BUILDDIR}" ] |
| 31 | then |
| 32 | suwrap "cd ${HOMEDIR} && git clone git://git.sitka.bclibraries.ca/sitka/evergreen evergreen" ${DEFAULT_USER} |
| 33 | fi |
| 34 | suwrap "cd ${BUILDDIR} && git checkout ${BRANCH}" ${DEFAULT_USER} |
| 35 | |
| 36 | # as root |
| 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 |
| 39 | |
| 40 | # as DEFAULT_USER |
| 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} |
| 45 | |
| 46 | # as root |
| 47 | cd ${BUILDDIR} && make STAFF_CLIENT_STAMP_ID=${STAMP_ID} STAFF_CLIENT_VERSION=${VERSION} install |
| 48 | chown -R opensrf:opensrf ${INSTALLDIR} |
| 49 | |
| 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} |
| 53 | do |
| 54 | cp ${SITKACONF}/files/${APACHEFILE}/${HOSTNAME} ${APACHEFILE} |
| 55 | done |
| 56 | a2dissite default |
| 57 | a2ensite eg.conf |
| 58 | mkdir /etc/apache2/ssl |
| 59 | cd /etc/apache2/ssl && openssl req -new -x509 -days 365 -nodes -out server.crt -keyout server.key |
| 60 | |
| 61 | # TODO: set up log rotation |
| 62 | |
| 63 | # 0. osrf conf stuff |
| 64 | # FIXME: ensure osrf conf files point at a real, distinct db! |
| 65 | OSRFCONFFILES="${INSTALLDIR}/conf/opensrf.xml ${INSTALLDIR}/conf/opensrf_core.xml" |
| 66 | for OSRFCONFFILE in ${OSRFCONFFILES} |
| 67 | do |
| 68 | rm ${OSRFCONFFILE} |
| 69 | cp ${SITKACONF}/files/${OSRFCONFFILE}/${HOSTNAME} ${OSRFCONFFILE} |
| 70 | done |
| 71 | if [ ! -d "${HOMEDIR}/.srfsh.xml" ] |
| 72 | then |
| 73 | cp ${SITKACONF}/files/home/opensrf/.srfsh.xml/${HOSTNAME} ${HOMEDIR}/.srfsh.xml |
| 74 | fi |
| 75 | |
| 76 | # setup offline circ |
| 77 | cd ${BUILDDIR} && perl Open-ILS/src/support-scripts/eg_db_config --create-offline |
| 78 | |
| 79 | # 1. install dojo |
| 80 | cd /home/opensrf && wget http://download.dojotoolkit.org/release-1.3.3/dojo-release-1.3.3.tar.gz |
| 81 | tar -C ${INSTALLDIR}/var/web/js -xzf /home/opensrf/dojo-release-1.3.3.tar.gz |
| 82 | cp -r ${INSTALLDIR}/var/web/js/dojo-release-1.3.3/* ${INSTALLDIR}/var/web/js/dojo/. |
| 83 | |
| 84 | # 2. set up staff client |
| 85 | cd ${INSTALLDIR}/var/web/xul && rm server && rm current |
| 86 | cd ${INSTALLDIR}/var/web/xul && ln -s ${STAMP_ID} current && ln -s current/server server |
| 87 | for ALT_STAMP_ID in ${ALT_STAMP_IDS} |
| 88 | do |
| 89 | cd ${INSTALLDIR}/var/web/xul && ln -s current ${ALT_STAMP_ID} |
| 90 | done |
| 91 | |
| 92 | # 3. install circ scripts and opac skins - DEPRECATED |
| 93 | |
| 94 | # 4. avoid 404s |
| 95 | touch ${INSTALLDIR}/var/web/css/skin/default/register_custom.css |
| 96 | touch ${INSTALLDIR}/var/web/xul/server/locale/en-CA/patron_custom.properties |
| 97 | touch ${INSTALLDIR}/var/web/xul/server/locale/en-CA/common_custom.properties |
| 98 | touch ${INSTALLDIR}/var/web/xul/server/locale/en-CA/offline_custom.properties |
| 99 | touch ${INSTALLDIR}/var/web/xul/server/locale/en-CA/auth_custom.properties |
| 100 | touch ${INSTALLDIR}/var/web/xul/server/locale/en-CA/cat_custom.properties |
| 101 | touch ${INSTALLDIR}/var/web/xul/server/locale/en-CA/circ_custom.properties |
| 102 | touch ${INSTALLDIR}/var/web/xul/server/locale/en-US/patron_custom.properties |
| 103 | touch ${INSTALLDIR}/var/web/xul/server/locale/en-US/common_custom.properties |
| 104 | touch ${INSTALLDIR}/var/web/xul/server/locale/en-US/offline_custom.properties |
| 105 | touch ${INSTALLDIR}/var/web/xul/server/locale/en-US/auth_custom.properties |
| 106 | touch ${INSTALLDIR}/var/web/xul/server/locale/en-US/cat_custom.properties |
| 107 | touch ${INSTALLDIR}/var/web/xul/server/locale/en-US/circ_custom.properties |
| 108 | touch ${INSTALLDIR}/var/web/xul/server/skin/custom.js |
| 109 | |
| 110 | # 5. locale hack |
| 111 | cd ${INSTALLDIR}/var/web/opac/locale && cp -fdr en-US en-US-bak && cp -fdr en-CA en-US |
| 112 | |
| 113 | # 6. deletepatron |
| 114 | # ensure apache conf contains deletepatron config (location should be ${INSTALLDIR}/var/web/deletepatron) |
| 115 | cd ${INSTALLDIR}/var/web && git clone https://github.com/twirlip/deletepatron.git |
| 116 | cd ${INSTALLDIR}/var/web/deletepatron && git checkout eg22 && find . -name "*.pm" | xargs sed -i -e 's|/openils|/srv/openils|g' |
| 117 | apt-get install libcgi-session-perl libhtml-template-perl |
| 118 | |
| 119 | # 7. support scripts |
| 120 | cp ${BUILDDIR}/Open-ILS/src/support-scripts/generate_circ_notices.pl ${INSTALLDIR}/bin |
| 121 | cp ${BUILDDIR}/Open-ILS/src/support-scripts/oils_header.pl ${INSTALLDIR}/bin |
| 122 | |
| 123 | # 8. setup start page |
| 124 | if [ ! -d "${INSTALLDIR}/var/web/news" ] |
| 125 | then |
| 126 | mkdir ${INSTALLDIR}/var/web/news |
| 127 | fi |
| 128 | NEWSFILES="index.html style.css" |
| 129 | for NEWSFILE in ${NEWSFILES} |
| 130 | do |
| 131 | if [ -f "${SITKACONF}/files/${INSTALLDIR}/var/web/news/${NEWSFILE}/${HOSTNAME}" ] |
| 132 | then |
| 133 | cp ${SITKACONF}/files/${INSTALLDIR}/var/web/news/${NEWSFILE}/${HOSTNAME} ${INSTALLDIR}/var/web/news/${NEWSFILE} |
| 134 | fi |
| 135 | done |
| 136 | |
| 137 | # 9. make sure opensrf owns all the stuff we just did |
| 138 | chown -R opensrf:opensrf ${INSTALLDIR} |
| 139 | chown -R opensrf:opensrf /home/opensrf |
| 140 | chown -R opensrf:opensrf /var/lock/apache2 |
| 141 | |
| 142 | # 10. staff client stuff |
| 143 | apt-get install nsis unzip |