]> git.ipfire.org Git - ipfire-2.x.git/blob - config/rootfiles/oldcore/28/update.sh
Updated kernel to 2.6.27.31
[ipfire-2.x.git] / config / rootfiles / oldcore / 28 / 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) 2009 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.5"
29 #
30 KVER="2.6.27.25"
31 ROOT=`grep "root=" /boot/grub/grub.conf | cut -d"=" -f2 | cut -d" " -f1 | tail -n 1`
32 MOUNT=`grep "kernel" /boot/grub/grub.conf | tail -n 1`
33 # Nur den letzten Parameter verwenden
34 echo $MOUNT > /dev/null
35 MOUNT=$_
36 #
37 # check if we the backup file already exist
38 if [ -e /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 ]; then
39 echo Moving backup to backup-old ...
40 mv -f /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \
41 /var/ipfire/backup/core-upgrade_$KVER-old.tar.bz2
42 fi
43 echo First we made a backup of all files that was inside of the
44 echo update archive. This may take a while ...
45 # Add some files that are not in the package to backup
46 echo lib/modules >> /opt/pakfire/tmp/ROOTFILES
47 echo boot >> /opt/pakfire/tmp/ROOTFILES
48 echo etc/issue >> /opt/pakfire/tmp/ROOTFILES
49 echo opt/pakfire/etc/pakfire.conf >> /opt/pakfire/tmp/ROOTFILES
50 echo etc/sysconfig/lm_sensors >> /opt/pakfire/tmp/ROOTFILES
51 #
52 tar cjvf /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \
53 -C / -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' > /dev/null 2>&1
54 echo
55 echo Update IPfire to $NEWVERSION ...
56 # Remove old kernel, configs, initrd, modules ...
57 #
58 rm -rf /boot/System.map-*
59 rm -rf /boot/config-*
60 rm -rf /boot/ipfirerd-*
61 rm -rf /boot/vmlinuz-*
62 rm -rf /lib/modules/
63 #
64 # Backup grub.conf
65 #
66 cp -vf /boot/grub/grub.conf /boot/grub/grub.conf.org
67 #
68 # Unpack the updated files
69 #
70 echo
71 echo Unpack the updated files ...
72 #
73 tar xvf /opt/pakfire/tmp/files --preserve --numeric-owner -C / \
74 --no-overwrite-dir
75 #
76 # Modify grub.conf
77 #
78 echo
79 echo Update grub configuration ...
80 sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
81 sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
82 sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
83
84 if [ "$(grep "^serial" /boot/grub/grub.conf.org)" == "" ]; then
85 echo "grub use default console ..."
86 else
87 echo "grub use serial console ..."
88 sed -i -e "s|splashimage|#splashimage|g" /boot/grub/grub.conf
89 sed -i -e "s|#serial|serial|g" /boot/grub/grub.conf
90 sed -i -e "s|#terminal|terminal|g" /boot/grub/grub.conf
91 sed -i -e "s| panic=10 | console=ttyS0,38400n8 panic=10 |g" /boot/grub/grub.conf
92 fi
93 #
94 # Made emergency - initramdisk
95 #
96 echo
97 echo Create new Initramdisks ...
98 cp -f /etc/mkinitcpio.conf.org /etc/mkinitcpio.conf
99 sed -i "s| autodetect | |g" /etc/mkinitcpio.conf
100 mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER-emergency.img
101 cp -f /etc/mkinitcpio.conf.org /etc/mkinitcpio.conf
102 #
103 # Made initramdisk
104 #
105 if [ "${ROOT:0:7}" == "/dev/sd" ]; then
106 # Remove ide hook if root is on sda
107 sed -i "s| ide | |g" /etc/mkinitcpio.conf
108 else
109 if [ "${ROOT:0:7}" == "/dev/hd" ]; then
110 # Remove pata & sata hook if root is on hda
111 sed -i "s| pata | |g" /etc/mkinitcpio.conf
112 sed -i "s| sata | |g" /etc/mkinitcpio.conf
113 fi
114 fi
115 mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER.img
116 #
117 # ReInstall grub
118 #
119 grub-install --no-floppy ${ROOT::`expr length $ROOT`-1} --recheck
120 #
121 # Rebuild Language
122 #
123 #perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
124 #
125 # Delete old lm-sensor modullist...
126 #
127 rm -rf /etc/sysconfig/lm_sensors
128 #
129 # Restart snort
130 #
131 /etc/init.d/snort restart
132 #
133 # Change version of Pakfire.conf
134 #
135 sed -i "s|$OLDVERSION|$NEWVERSION|g" /opt/pakfire/etc/pakfire.conf
136 #
137 # Regenerate qos-scripts
138 [ -e /var/ipfire/qos/enable ] && /usr/local/bin/qosctrl stop
139 [ -e /var/ipfire/qos/enable ] && /usr/local/bin/qosctrl generate
140 [ ! -e /var/ipfire/qos/enable ] && rm -f /var/ipfire/qos/bin/qos.sh
141 #
142 # This core-update need a reboot
143 /usr/bin/logger -p syslog.emerg -t core-upgrade-28 "Upgrade finished. If you use a customized grub.cfg"
144 /usr/bin/logger -p syslog.emerg -t core-upgrade-28 "Check it before reboot !!!"
145 /usr/bin/logger -p syslog.emerg -t core-upgrade-28 " *** Please reboot... *** "