opensim-tools – Blame information for rev 57

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 eva 1 #!/bin/bash
2 ###########################################################################
3 ## Copyright (C) Wizardry and Steamworks 2013 - 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  
42 eva 8 PATH=/opt/mono-4-0/bin:$PATH
9  
28 eva 10 dialog --msgbox "This tool will upgrade the Spectacled Owl machine." 10 70
48 eva 11  
12 # Spectaced Owl upgrade
13 if [ -f lib/install-packages.txt ] && [ -f lib/uninstall-packages.txt ]; then
14 dialog --yesno "By selecting yes here, the Spectacled Owl 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 Spectacled Owl machine. Would you like to process the list of packages to install or remove?" 10 70
15 if [ $? == "0" ]; then
16 # Update repositories
17 aptitude update
18 aptitude upgrade
19 # Remove packages
20 cat lib/uninstall-packages.txt | while read p; do
50 eva 21 PACKAGE=`dpkg -l | grep "$p" | head -1 | awk '{ print $2 }'`
49 eva 22 if [ "$PACKAGE" == "$p" ]; then
48 eva 23 aptitude purge $p
24 fi
25 done
26 # Install packages
27 cat lib/install-packages.txt | while read i; do
50 eva 28 PACKAGE=`dpkg -l | grep "$i" | head -1 | awk '{ print $2 }'`
49 eva 29 if [ "$PACKAGE" != "$i" ]; then
55 eva 30 aptitude purge $i
48 eva 31 aptitude install $i
32 fi
33 done
34 fi
35 fi
36  
52 eva 37 # Update system files
38 dialog --yesno "This part of the upgrade process updates the Spectacled Owl system files with updated versions from the official repository. Unless you have heavily modified the Spectacled Owl machine, you should say yes here. Would you like to update the Spectacled Owl system files?" 10 70
39 if [ $? == "0" ]; then
53 eva 40 cp -Rap lib/fs/* /
52 eva 41 fi
42  
48 eva 43 # OpenSim upgrade
20 eva 44 pushd ./
28 eva 45 if [ -d ../opensim-sources/ ]; then
20 eva 46 cd ../opensim-sources/
47 echo "[SpectacledOwl] Updating sources..."
48 svn update
48 eva 49 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
30 eva 50 if [ $? == "0" ]; then
28 eva 51 echo "[SpectacledOwl] Cleaning..."
52 PKG_CONFIG_PATH=/opt/mono-4-0/lib/pkgconfig make clean
53 echo "[SpectacledOwl] Build..."
54 PKG_CONFIG_PATH=/opt/mono-4-0/lib/pkgconfig make
55 if [ -d /home/opensim/os ]; then
30 eva 56 echo "[SpectacledOwl] Copying files..."
57 mkdir -p /home/opensim/os
58 find bin/ -name \*.ini -exec rm -rf '{}' \;
59 find bin/ -name \*.config -exec rm -rf '{}' \;
60 cp -Ra bin/* /home/opensim/os/
61 echo "[SpectacledOwl] Changing ownership..."
62 chown -R opensim:opensim /home/opensim/os/
63 fi
20 eva 64 fi
65 fi
28 eva 66 if [ -d ../opensim-config/ ]; then
20 eva 67 cd ../opensim-config/
68 svn update
33 eva 69 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
28 eva 70 if [ $? == "0" ]; then
71 echo "[SpectacledOwl] Updating configuration..."
72 cp -Ra * /home/opensim/os/
73 fi
20 eva 74 fi
28 eva 75 if [ -d ../opensim-www/ ]; then
76 cd ../opensim-www/
20 eva 77 svn update
34 eva 78 dialog --yesno "This option will update the Spectacled Owl's OpenSim website pages. These pages are the ones that you see when logging-in to the Spectacled Owl and allow the web-based management of the Spectacled Owl. 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 Spectacled Owl website pages?" 10 70
29 eva 79 if [ $? == "0" ]; then
28 eva 80 echo "[SpectacledOwl] Updating website..."
81 cp -R * /var/www/
34 eva 82 chown -R www-data:www-data /var/www
28 eva 83 service lighttpd restart
84 fi
20 eva 85 fi
86 popd
28 eva 87 dialog --yesno "The Spectacled Owl uses a few shell scripts that manage the virtual machine. These tools can be found in the opensim-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 Spectacled Owl. Do you want to deploy the Spectacled Owl tools?" 10 70
88 if [ $? == "0" ]; then
89 echo "[SpectacledOwl] Deploying tools..."
90 if [ -x lib/osstrap ]; then
91 cp lib/osstrap /etc/init.d/osstrap
92 fi
93 if [ -x lib/iardumper ]; then
94 cp lib/iardumper /etc/cron.daily/iardumper
95 fi
20 eva 96 fi
29 eva 97 if [ -x lib/firewall ]; then
98 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 Spectacled Owl. 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
99 if [ $? == "0" ]; then
100 echo "[SpectacledOwl] Applying firewall..."
101 lib/firewall
102 fi
20 eva 103 fi
32 eva 104 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
105 if [ $? == "0" ]; then
106 echo "[SpectacledOwl] Restarting OpenSim."
107 kill -s HUP `pidof mono`
108 fi
20 eva 109 echo "[SpectacledOwl] Done."
32 eva 110 dialog --msgbox "Upgrade process is now complete. Have a nice day." 10 70