X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=build.xml;h=767fa2cbe46cb315c761917bd7f2f01f06b013b6;hb=d22fb3d5210a72c35afce35ee9779e7ccfa5da00;hp=30e9c91d9a4bc9fce7fc8033bbd74a99cc6755c3;hpb=f35445729371789b3d496f426d7f87542f8e1a45;p=org.ibex.core.git diff --git a/build.xml b/build.xml index 30e9c91..767fa2c 100644 --- a/build.xml +++ b/build.xml @@ -17,6 +17,9 @@ + + + @@ -68,26 +71,6 @@ - - - - - - - - - - - - - - - - - @@ -112,50 +95,111 @@ - - - - - - - + + + + - - + + + + + - find www/html -name \*~ | xargs rm -f + + + + + + cvs commit -m "automatically updated build-id via org.xwt.tasks.BuildIdTask" build.properties + + + - # this is still pretty ugly... - cp lib/j2ee-javax.jar lib/xmlrpc.jar lib/imap.jar lib/pop3.jar lib/mail.jar lib/mailapi.jar www/webapps/lib/ + + + + + + + - # throw on the prefix/suffix where needed - rm -f /tmp/delete-$$ - for A in `find www/html -name \*.html_` - do (cat www/html/prefix.html; cat $A; cat www/html/suffix.html; cat "$A"_ 2>/dev/null; cat www/html/tagline.html) > `echo $A | sed s/_\$//g` - echo $A | sed s/_\$//g >> /tmp/delete-$$ - done + + /home/megacz/bin/sign/sign ${build-id} + + + + + + + + + + + + - # in theory, we should be able to slam a fully-functional - # copy of the xwt server onto any debian machine with the - # right packages preinstalled (roughly: bind, apache, libapache-mod-ssl - # apache-ssl, sshd, rsync, j2sdk, tomcat) + + + + + # first, clone the currently running copy of xwt, so we can use rsync to save bandwidth - ssh root@xwt.org "rm -rf /xwt-new; mkdir -p /xwt; mkdir -p /xwt-new; cd /xwt; tar cf - . | tar xf - -C /xwt-new" + rm -rf /xwt-new + mkdir -p /xwt + mkdir -p /xwt-new + cd /xwt + tar cf - . | tar xf - -C /xwt-new + - # now, rsync to process our changes - rsync -Pv --delete -rze ssh www/ root@xwt.org:/xwt-new/www/ + + # tidy up and rsync our changes + find www/html -name \*~ | xargs rm -f + rsync -Pv --delete --exclude=html/dist/\* -rze ssh www/ root@${host}:/xwt-new/www/ + rsync -u -Pv -rze ssh www/html/dist/ root@${host}:/xwt-new/www/html/dist/ + - # clean up generated html - cat /tmp/delete-$$ | xargs rm - rm -f /tmp/delete-$$ + + # stop services + /sbin/start-stop-daemon --stop --pidfile /var/log/xwt/apache.pid --exec /usr/sbin/apache + /sbin/start-stop-daemon --stop --pidfile /var/log/xwt/tomcat.pid --user www-data + + rm -rf /xwt-old + mv /xwt /xwt-old + mv /xwt-new /xwt + + mkdir /var/log/xwt &>/dev/null + chown www-data /var/log/xwt/ + + ln -s /xwt/www/webapps /xwt/www/webapps/ROOT + ln -s /xwt/www/webapps /xwt/www/webapps/WEB-INF + ln -s /xwt/www/launch /xwt/www/launch/ROOT + ln -s /xwt/www/launch /xwt/www/launch/WEB-INF - # stop services, clean up, transfer control, and restart services - ssh root@xwt.org "chmod +x /xwt-new/www/bounce.sh; /xwt-new/www/bounce.sh" + export JAVA_HOME=/usr/lib/j2sdk1.3 + export CLASSPATH=$JAVA_HOME/jre/lib/rt.jar:$JAVA_HOME/lib/tools.jar:/usr/share/tomcat/classes:/usr/share/tomcat/lib/tomcat.jar + + touch /var/log/xwt/tomcat.log + chown www-data /var/log/xwt/tomcat.log + + test ${host} == "xwt-staging.org" && echo -e "User-agent: *\nDisallow: /\n" > /xwt/www/html/robots.txt + + /sbin/start-stop-daemon \ + --start --pidfile /var/log/xwt/tomcat.pid --make-pidfile --chuid www-data --exec \ + /usr/lib/j2sdk1.3/bin/java -- -server -Dtomcat.home=/usr/share/tomcat -Xmx500M \ + org.apache.tomcat.startup.Main -config /xwt/www/etc/server.xml start \ + >> /var/log/xwt/tomcat.log 2>&1 & + + /sbin/start-stop-daemon --start --pidfile /var/log/xwt/apache.pid --exec /usr/sbin/apache -- -f /xwt/www/etc/httpd.conf ${staging-flag} +