]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - config/rootfiles/updater/update.sh
6a584649bbe22efd335d361c1698edf4e08de0d5
[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 #
58 tar cjvf /var/ipfire/backup/update_$OLDVERSION-$NEWVERSION.tar.bz2 \
59 -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' -C / > /dev/null 2>&1
60 echo
61 echo Update IPfire to $NEWVERSION ...
62 #
63 # Delete old collectd symlink
64 #
65 rm -rf /etc/rc.d/rc3.d/S20collectd
66 #
67 # Delete old iptables libs...
68 #
69 rm -rf /lib/iptables
70 #
71 # Remove old kernel, configs, initrd, modules ...
72 #
73 rm -rf /boot/System.map-*
74 rm -rf /boot/config-*
75 rm -rf /boot/ipfirerd-*
76 rm -rf /boot/vmlinuz-*
77 rm -rf /lib/modules/
78 #
79 # Stopping Squid
80 #
81 echo
82 echo Stopping Squid ...
83 /etc/init.d/squid stop
84 #
85 # Unpack the updated files
86 #
87 echo
88 echo Unpack the updated files ...
89 extract_files
90 #
91 # Starting Squid
92 #
93 echo
94 echo Starting Squid ...
95 /etc/init.d/squid start
96 #
97 # Modify grub.conf
98 #
99 echo
100 echo Update grub configuration ...
101 sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
102 sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
103 sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
104 #
105 # Made emergency - initramdisk
106 #
107 echo
108 echo Create new Initramdisks ...
109 cp -f /etc/mkinitcpio.conf /etc/mkinitcpio.conf.org
110 sed -i "s| autodetect | |g" /etc/mkinitcpio.conf
111 mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER-emergency.img
112 cp -f /etc/mkinitcpio.conf.org /etc/mkinitcpio.conf
113 #
114 # Made initramdisk
115 #
116 if [ "${ROOT:0:7}" == "/dev/sd" ]; then
117 # Remove ide hook if root is on sda
118 sed -i "s| ide | |g" /etc/mkinitcpio.conf
119 else
120 if [ "${ROOT:0:7}" == "/dev/hd" ]; then
121 # Remove pata & sata hook if root is on hda
122 sed -i "s| pata | |g" /etc/mkinitcpio.conf
123 sed -i "s| sata | |g" /etc/mkinitcpio.conf
124 fi
125 fi
126 mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER.img
127 #mkinitcpio -k $KVER-ipfire-smp -g /boot/ipfirerd-$KVER-smp.img
128 #
129 # Change version of Pakfire.conf
130 #
131 sed -i "s|$OLDVERSION|$NEWVERSION|g" /opt/pakfire/etc/pakfire.conf
132 #
133 # Create new issue
134 #
135 echo IPFire v$NEWVERSION - www.ipfire.org > /etc/issue
136 echo =================================== >> /etc/issue
137 echo \\n running on \\s \\r \\m >> /etc/issue
138 #
139 # Update crontab
140 #
141 grep -v "ipacsum" /var/spool/cron/root.orig > /tmp/root.orig.tmp
142 mv /tmp/root.orig.tmp /var/spool/cron/root.orig
143 chmod 600 /var/spool/cron/root.orig
144 chown root:cron /var/spool/cron/root.orig
145 #
146 # Update network-rules
147 #
148 sed -i 's|"net", SYSFS{address}|"net", SYSFS{type}=="1", SYSFS{address}|g' \
149 /etc/udev/rules.d/30-persistent-network.rules
150 #
151 # Core 17
152 #
153 perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
154 perl /var/ipfire/qos/bin/migrate.pl
155 /var/ipfire/updatexlrator/bin/convert
156 #
157 # Delete old lm-sensor modullist...
158 #
159 rm -rf /etc/sysconfig/lm_sensors
160 #
161 # ISDN
162 #
163 /etc/init.d/mISDN config
164 #
165 # Remove obsolete packages, update the lists and do upgrade
166 #
167 echo '#!/bin/bash' > /tmp/remove_obsolete_paks
168 echo 'while [ "$(ps -A | grep " update.sh")" != "" ]; do' >> /tmp/remove_obsolete_paks
169 echo ' sleep 2' >> /tmp/remove_obsolete_paks
170 echo 'done' >> /tmp/remove_obsolete_paks
171 echo 'while [ "$(ps -A | grep " pakfire")" != "" ]; do' >> /tmp/remove_obsolete_paks
172 echo ' sleep 2' >> /tmp/remove_obsolete_paks
173 echo 'done' >> /tmp/remove_obsolete_paks
174 echo '/opt/pakfire/pakfire remove -y mpg123 subversion zaptel' >> /tmp/remove_obsolete_paks
175 echo '/opt/pakfire/pakfire update -y --force' >> /tmp/remove_obsolete_paks
176 echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/remove_obsolete_paks
177 echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/remove_obsolete_paks
178 echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/remove_obsolete_paks
179 echo 'logger -p syslog.emerg -t core-upgrade-18 "Upgrade finished. Please reboot... "' >> /tmp/remove_obsolete_paks
180 #
181 chmod +x /tmp/remove_obsolete_paks
182 /tmp/remove_obsolete_paks &
183 echo
184 echo Please wait until pakfire has ended...
185 echo