clockwerk-tools – Blame information for rev 38

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 eva 1 #!/bin/bash
2 ###########################################################################
3 ## Copyright (C) Wizardry and Steamworks 2014 - License: GNU GPLv3 ##
4 ## Please see: http://www.gnu.org/licenses/gpl.html for legal details, ##
5 ## rights of fair usage, the disclaimer and warranty conditions. ##
6 ###########################################################################
7  
8 dialog --msgbox "This tool will upgrade the Clockwerk machine." 10 70
9  
10 # Clockwerk upgrade
11 if [ -f lib/install-packages.txt ] && [ -f lib/uninstall-packages.txt ]; then
12 dialog --yesno "By selecting yes here, the Clockwerk will install or remove packages essential for OpenSim from the virtual machine. You should say yes here unless you have made major changes to the Clockwerk machine. Would you like to process the list of packages to install or remove?" 10 70
13 if [ $? == "0" ]; then
14 # Update repositories
15 aptitude -y update
16 aptitude -y upgrade
17 # Remove packages
18 cat lib/uninstall-packages.txt | while read p; do
19 PACKAGE=`dpkg -l | grep "$p" | head -1 | awk '{ print $2 }'`
20 if [ "$PACKAGE" == "$p" ]; then
21 aptitude -y purge $p
22 fi
23 done
24 # Install packages
25 cat lib/install-packages.txt | while read i; do
26 PACKAGE=`dpkg -l | grep "$i" | head -1 | awk '{ print $2 }'`
27 if [ "$PACKAGE" != "$i" ]; then
28 aptitude -y purge $i
29 aptitude -y install $i
30 fi
31 done
32 fi
33 fi
34  
35 # Update system files
36 dialog --yesno "This part of the upgrade process updates the Clockwerk system files with updated versions from the official repository. Unless you have heavily modified the Clockwerk machine, you should say yes here. Would you like to update the Clockwerk system files?" 10 70
37 if [ $? == "0" ]; then
38 cp -Rap lib/fs/* /
39 kill -s HUP `pidof cron`
40 fi
41  
42 # OpenSim upgrade
43 pushd ./
44 cd ../
4 eva 45 if [ ! -d clockwerk-opensim ]; then
46 svn co http://svn.was.fm/clockwerk-opensim
1 eva 47 fi
48 echo "[Clockwerk] Updating sources..."
5 eva 49 cd clockwerk-opensim
36 vero 50 ./runprebuild.sh clean
51 svn revert --recursive .
38 eva 52 svn status | grep "^\?" | awk '{print $2}' | xargs rm -rf -
37 eva 53 svn update --accept base
1 eva 54 dialog --yesno "By selecting yes here, the OpenSim sources will be updated from the development repository, compiled and added to the current OpenSim working directory. Selecting yes here will not affect any modifications you may have done to OpenSim's ini files. Upgrade the OpenSim binaries to the lastest development version?" 10 70
55 if [ $? == "0" ]; then
56 echo "[Clockwerk] Cleaning..."
31 vero 57 ./runprebuild.sh clean
58 echo "[Clockwerk] Prebuild..."
59 ./runprebuild.sh
1 eva 60 echo "[Clockwerk] Build..."
31 vero 61 nant
35 vero 62 if [ ! -d /srv/opensim ]; then
4 eva 63 mkdir -p /srv/opensim
1 eva 64 fi
35 vero 65 echo "[Clockwerk] Copying files..."
66 mkdir -p /srv/opensim
67 find bin/ -name \*.ini -o -name \*.config -o -name assets -o -name assetcache -exec rm -rf '{}' \;
68 cp -Ra bin/* /srv/opensim/
69 echo "[Clockwerk] Changing ownership..."
70 chown -R opensim:opensim /srv/opensim/
1 eva 71 fi
4 eva 72 if [ -d ../clockwerk-opensim-config/ ]; then
73 cd ../clockwerk-opensim-config/
1 eva 74 svn update
75 dialog --yesno "This option will update OpenSim's configuration files EXCEPT Regions.ini which will not be overwritten. It is useful to synchronize OpenSim's configuration files with new options from the development branch. If you have made changes to OpenSim's ini files, a resonable answer will be no. However, at some point you should make a backup and sync with the development version. Update the configuration files now?" 12 70
76 if [ $? == "0" ]; then
35 vero 77 if [ ! -d /srv/opensim ]; then
78 mkdir -p /srv/opensim
79 fi
1 eva 80 echo "[Clockwerk] Updating configuration..."
4 eva 81 cp -Ra * /srv/opensim/
6 eva 82 echo "[Clockwerk] Changing ownership..."
83 chown -R opensim:opensim /srv/opensim/
1 eva 84 mysql -u debian-sys-maint -pvu9VYfFIcb0qcRVC -D opensim -e "delete from assets where id='00000000-0000-1111-9999-000000000010'"
85 mysql -u debian-sys-maint -pvu9VYfFIcb0qcRVC -D opensim -e "delete from assets where id='00000000-0000-1111-9999-000000000011'"
86 mysql -u debian-sys-maint -pvu9VYfFIcb0qcRVC -D opensim -e "delete from assets where id='00000000-0000-1111-9999-000000000012'"
87 fi
88 fi
9 eva 89 if [ -d ../clockwerk-www/ ]; then
90 cd ../clockwerk-www/
1 eva 91 svn update
92 dialog --yesno "This option will update the Clockwerk's OpenSim website pages. These pages are the ones that you see when logging-in to the Clockwerk and allow the web-based management of the Clockwerk. If you have made changes to the pages located in /var/www, you should make a backup and say yes. Do you want to upgrade the Clockwerk website pages?" 10 70
93 if [ $? == "0" ]; then
94 echo "[Clockwerk] Updating website..."
21 vero 95 find /var/www/ -name \*.php -o -name \*.js -o -name \*.css -exec rm -rf '{}' \;
1 eva 96 cp -R * /var/www/
6 eva 97 echo "[Clockwerk] Changing permissions..."
1 eva 98 chown -R www-data:www-data /var/www
30 vero 99 service apache2 restart
1 eva 100 fi
101 fi
28 eva 102 if [ -d ../clockwerk-guacamole ]; then
103 cd ../clockwerk-guacamole/
104 svn update
105 echo "[Clockwerk] Updating guacamole..."
29 vero 106 rm -rf /var/lib/tomcat6/webapps/guacamole/*
28 eva 107 cp -R * /var/lib/tomcat6/webapps/guacamole/
29 vero 108 chown -R tomcat6:tomcat6 /var/lib/tomcat6/webapps/guacamole
28 eva 109 service tomcat6 restart
110 fi
1 eva 111 popd
4 eva 112 dialog --yesno "The Clockwerk uses a few shell scripts that manage the virtual machine. These tools can be found in the clockwerk-tools/lib directory and when you run this script they are updated and copied into the filesystem. A safe answer would be yes since they make-up for the core functionality of the Clockwerk. Do you want to deploy the Clockwerk tools?" 10 70
1 eva 113 if [ $? == "0" ]; then
114 echo "[Clockwerk] Deploying tools..."
115 if [ -x lib/osstrap ]; then
116 cp lib/osstrap /etc/init.d/osstrap
117 fi
118 if [ -x lib/iardumper ]; then
119 cp lib/iardumper /etc/cron.daily/iardumper
120 fi
121 fi
122 if [ -x lib/firewall ]; then
123 dialog --yesno "Apply the latest firewall changes? The firewall rules can be found in the opensim-tools/lib/firewall file and consist of a rudiementary set of protections for the Clockwerk. If you have made changes to ports and are now managing the firewall by yourself, the safe choice is no. Otherwise, please select yes." 10 70
124 if [ $? == "0" ]; then
125 echo "[Clockwerk] Applying firewall..."
126 lib/firewall
127 fi
128 fi
129 dialog --yesno "It is recommended to restart the OpenSim instance now. You can switch to the first console using CTRL+ALT+F1 and restart OpenSim yourself, or answer yes here. Restart OpenSim?" 10 70
130 if [ $? == "0" ]; then
131 echo "[Clockwerk] Restarting OpenSim."
132 kill -s HUP `pidof mono`
133 fi
134 echo "[Clockwerk] Done."
135 dialog --msgbox "Upgrade process is now complete. Have a nice day." 10 70