]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - config/rootfiles/core/28/update.sh
980f5fedd607188f9548cda18807be3b1a186ddc
[people/pmueller/ipfire-2.x.git] / config / rootfiles / core / 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) 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 KVER="2.6.25.20"
28 ROOT=`grep "root=" /boot/grub/grub.conf | cut -d"=" -f2 | cut -d" " -f1 | tail -n 1`
29 MOUNT=`grep "kernel" /boot/grub/grub.conf | tail -n 1`
30 # Nur den letzten Parameter verwenden
31 echo $MOUNT > /dev/null
32 MOUNT=$_
33 #
34 # check if we the backup file already exist
35 if [ -e /var/ipfire/backup/coreupdate28_$KVER.tar.gz ]; then
36 echo Moving backup to backup-old ...
37 mv -f /var/ipfire/backup/coreupdate28_$KVER.tar.gz \
38 /var/ipfire/backup/coreupdate28_$KVER-old.tar.gz
39 fi
40 echo First we made a backup of all files that was inside of the
41 echo update archive. This may take a while ...
42 # Add some files that are not in the package to backup
43 echo lib/modules >> /opt/pakfire/tmp/ROOTFILES
44 echo boot >> /opt/pakfire/tmp/ROOTFILES
45 #
46
47 tar czvf /var/ipfire/backup/coreupdate28_$KVER.tar.gz.tar.gz \
48 -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' -C / > /dev/null 2>&1
49 echo
50 echo Update IPfire Kernel to $KVER ...
51 # Remove old kernel, configs, initrd, modules ...
52 #
53 rm -rf /boot/System.map-*
54 rm -rf /boot/config-*
55 rm -rf /boot/ipfirerd-*
56 rm -rf /boot/vmlinuz-*
57 rm -rf /lib/modules/
58 #
59 # Unpack the updated files
60 #
61 echo
62 echo Unpack the updated files ...
63 #
64 tar xvf /opt/pakfire/tmp/files --preserve --numeric-owner -C / \
65 --no-overwrite-dir
66 #
67 # Modify grub.conf
68 #
69 echo
70 echo Update grub configuration ...
71 sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
72 sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
73 sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
74 #
75 # Made emergency - initramdisk
76 #
77 echo
78 echo Create new Initramdisks ...
79 cp -f /etc/mkinitcpio.conf.org /etc/mkinitcpio.conf
80 sed -i "s| autodetect | |g" /etc/mkinitcpio.conf
81 mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER-emergency.img
82 cp -f /etc/mkinitcpio.conf.org /etc/mkinitcpio.conf
83 #
84 # Made initramdisk
85 #
86 if [ "${ROOT:0:7}" == "/dev/sd" ]; then
87 # Remove ide hook if root is on sda
88 sed -i "s| ide | |g" /etc/mkinitcpio.conf
89 else
90 if [ "${ROOT:0:7}" == "/dev/hd" ]; then
91 # Remove pata & sata hook if root is on hda
92 sed -i "s| pata | |g" /etc/mkinitcpio.conf
93 sed -i "s| sata | |g" /etc/mkinitcpio.conf
94 fi
95 fi
96 mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER.img
97 #
98 # ReInstall grub
99 #
100 grub-install --no-floppy ${ROOT::`expr length $ROOT`-1} --recheck
101 #
102 # Rebuild Language
103 #
104 #perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
105 #
106 # Restart snort
107 #
108 /etc/init.d/snort restart
109 #
110 # This core-update need a reboot
111 /usr/bin/logger -p syslog.emerg -t core-upgrade-28 "Upgrade finished. Please reboot... "' >> /tmp/remove_obsolete_paks