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