]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - config/rootfiles/updater/update.sh
632429fbbb06057cfb43c0cfabac357c2c7c13a0
[people/teissler/ipfire-2.x.git] / config / rootfiles / updater / update.sh
1 #!/bin/bash
2 ############################################################################
3 # #
4 # This file is part of the IPFire Firewall. #
5 # #
6 # IPFire is free software; you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation; either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # IPFire is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with IPFire; if not, write to the Free Software #
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
19 # #
20 # Copyright (C) 2008 IPFire-Team <info@ipfire.org>. #
21 # #
22 ############################################################################
23 #
24 . /opt/pakfire/lib/functions.sh
25 /usr/local/bin/backupctrl exclude >/dev/null 2>&1
26 #
27 OLDVERSION=`grep "version = " /opt/pakfire/etc/pakfire.conf | cut -d'"' -f2`
28 NEWVERSION="2.3"
29 KVER="2.6.23.17"
30 ROOT=`grep "root=" /boot/grub/grub.conf | cut -d"=" -f2 | cut -d" " -f1 | tail -n 1`
31 MOUNT=`grep "kernel" /boot/grub/grub.conf | tail -n 1`
32 # Nur den letzten Parameter verwenden
33 echo $MOUNT > /dev/null
34 MOUNT=$_
35 #
36 echo
37 echo Update IPFire $OLDVERSION to $NEWVERSION
38 echo
39 #
40 # check if we the backup file already exist
41 if [ -e /var/ipfire/backup/update_$OLDVERSION-$NEWVERSION.tar.bz2 ]; then
42 echo Moving backup to backup-old ...
43 mv -f /var/ipfire/backup/update_$OLDVERSION-$NEWVERSION.tar.bz2 \
44 /var/ipfire/backup/update_$OLDVERSION-$NEWVERSION-old.tar.bz2
45 fi
46 echo First we made a backup of all files that was inside of the
47 echo update archive. This may take a while ...
48 # Add some files that are not in the package to backup
49 echo etc/issue >> /opt/pakfire/tmp/ROOTFILES
50 echo opt/pakfire/etc/pakfire.conf >> /opt/pakfire/tmp/ROOTFILES
51 echo var/spool/cron/root.orig >> /opt/pakfire/tmp/ROOTFILES
52 echo etc/udev/rules.d/30-persistent-network.rules >> /opt/pakfire/tmp/ROOTFILES
53 echo etc/sysconfig/lm_sensors >> /opt/pakfire/tmp/ROOTFILES
54 echo var/log/rrd >> /opt/pakfire/tmp/ROOTFILES
55 echo var/updatexlerator >> /opt/pakfire/tmp/ROOTFILES
56 echo lib/iptables >> /opt/pakfire/tmp/ROOTFILES
57 echo lib/modules >> /opt/pakfire/tmp/ROOTFILES
58 echo boot >> /opt/pakfire/tmp/ROOTFILES
59 echo srv/web/ipfire/cgi-bin/fwhits.cgi >> /opt/pakfire/tmp/ROOTFILES
60 echo srv/web/ipfire/cgi-bin/network.cgi >> /opt/pakfire/tmp/ROOTFILES
61 echo srv/web/ipfire/cgi-bin/traffics.cgi >> /opt/pakfire/tmp/ROOTFILES
62 echo srv/web/ipfire/cgi-bin/graphs.cgi >> /opt/pakfire/tmp/ROOTFILES
63 echo srv/web/ipfire/cgi-bin/qosgraph.cgi >> /opt/pakfire/tmp/ROOTFILES
64 #
65 tar cjvf /var/ipfire/backup/update_$OLDVERSION-$NEWVERSION.tar.bz2 \
66 -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' -C / > /dev/null 2>&1
67 echo
68 echo Update IPfire to $NEWVERSION ...
69 #
70 # Delete old collectd symlink
71 #
72 rm -rf /etc/rc.d/rc3.d/S20collectd
73 #
74 # Delete squid symlink
75 #
76 rm -rf /etc/rc.d/rc3.d/S99squid
77 #
78 # Delete old cgi files ...
79 #
80 rm -rf /srv/web/ipfire/cgi-bin/fwhits.cgi
81 rm -rf /srv/web/ipfire/cgi-bin/network.cgi
82 rm -rf /srv/web/ipfire/cgi-bin/traffics.cgi
83 rm -rf /srv/web/ipfire/cgi-bin/graphs.cgi
84 rm -rf /srv/web/ipfire/cgi-bin/qosgraph.cgi
85 #
86 # Delete old iptables libs...
87 #
88 rm -rf /lib/iptables
89 #
90 # Remove old kernel, configs, initrd, modules ...
91 #
92 rm -rf /boot/System.map-*
93 rm -rf /boot/config-*
94 rm -rf /boot/ipfirerd-*
95 rm -rf /boot/vmlinuz-*
96 rm -rf /lib/modules/
97 #
98 # Stopping Squid
99 #
100 echo
101 echo Stopping Squid ...
102 /etc/init.d/squid stop
103 #
104 # Unpack the updated files
105 #
106 echo
107 echo Unpack the updated files ...
108 extract_files
109 #
110 # Starting Squid
111 #
112 echo
113 echo Starting Squid ...
114 /etc/init.d/squid start
115 #
116 # Modify grub.conf
117 #
118 echo
119 echo Update grub configuration ...
120 sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
121 sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
122 sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
123 #
124 # Made emergency - initramdisk
125 #
126 echo
127 echo Create new Initramdisks ...
128 cp -f /etc/mkinitcpio.conf /etc/mkinitcpio.conf.org
129 sed -i "s| autodetect | |g" /etc/mkinitcpio.conf
130 mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER-emergency.img
131 cp -f /etc/mkinitcpio.conf.org /etc/mkinitcpio.conf
132 #
133 # Made initramdisk
134 #
135 if [ "${ROOT:0:7}" == "/dev/sd" ]; then
136 # Remove ide hook if root is on sda
137 sed -i "s| ide | |g" /etc/mkinitcpio.conf
138 else
139 if [ "${ROOT:0:7}" == "/dev/hd" ]; then
140 # Remove pata & sata hook if root is on hda
141 sed -i "s| pata | |g" /etc/mkinitcpio.conf
142 sed -i "s| sata | |g" /etc/mkinitcpio.conf
143 fi
144 fi
145 mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER.img
146 #mkinitcpio -k $KVER-ipfire-smp -g /boot/ipfirerd-$KVER-smp.img
147 #
148 # ReInstall grub
149 #
150 grub-install --no-floppy ${ROOT::`expr length $ROOT`-1}
151 #
152 # Change version of Pakfire.conf
153 #
154 sed -i "s|$OLDVERSION|$NEWVERSION|g" /opt/pakfire/etc/pakfire.conf
155 #
156 # Create new issue
157 #
158 echo IPFire v$NEWVERSION - www.ipfire.org > /etc/issue
159 echo =================================== >> /etc/issue
160 echo \\n running on \\s \\r \\m >> /etc/issue
161 #
162 # Update crontab
163 #
164 grep -v "ipacsum" /var/spool/cron/root.orig > /tmp/root.orig.tmp
165 mv /tmp/root.orig.tmp /var/spool/cron/root.orig
166 chmod 600 /var/spool/cron/root.orig
167 chown root:cron /var/spool/cron/root.orig
168 #
169 # Update network-rules
170 #
171 sed -i 's|"net", SYSFS{address}|"net", SYSFS{type}=="1", SYSFS{address}|g' \
172 /etc/udev/rules.d/30-persistent-network.rules
173 #
174 # Core 17
175 #
176 perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
177 perl /var/ipfire/qos/bin/migrate.pl
178 /var/ipfire/updatexlrator/bin/convert
179 #
180 # Delete old lm-sensor modullist...
181 #
182 rm -rf /etc/sysconfig/lm_sensors
183 #
184 # ISDN
185 #
186 /etc/init.d/mISDN config
187 #
188 # Remove obsolete packages, update the lists and do upgrade
189 #
190 echo '#!/bin/bash' > /tmp/remove_obsolete_paks
191 echo 'while [ "$(ps -A | grep " update.sh")" != "" ]; do' >> /tmp/remove_obsolete_paks
192 echo ' sleep 2' >> /tmp/remove_obsolete_paks
193 echo 'done' >> /tmp/remove_obsolete_paks
194 echo 'while [ "$(ps -A | grep " pakfire")" != "" ]; do' >> /tmp/remove_obsolete_paks
195 echo ' sleep 2' >> /tmp/remove_obsolete_paks
196 echo 'done' >> /tmp/remove_obsolete_paks
197 echo '/opt/pakfire/pakfire remove -y mpg123 subversion zaptel' >> /tmp/remove_obsolete_paks
198 echo '/opt/pakfire/pakfire update -y --force' >> /tmp/remove_obsolete_paks
199 echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/remove_obsolete_paks
200 echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/remove_obsolete_paks
201 echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/remove_obsolete_paks
202 echo 'logger -p syslog.emerg -t core-upgrade-18 "Upgrade finished. Please reboot... "' >> /tmp/remove_obsolete_paks
203 #
204 chmod +x /tmp/remove_obsolete_paks
205 /tmp/remove_obsolete_paks &
206 echo
207 echo Please wait until pakfire has ended...
208 echo