]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - config/rootfiles/core/28/update.sh
Updated kernel to 2.6.27.21
[people/pmueller/ipfire-2.x.git] / config / rootfiles / core / 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
AF
27OLDVERSION=`grep "version = " /opt/pakfire/etc/pakfire.conf | cut -d'"' -f2`
28NEWVERSION="2.3"
29#
6f876896 30KVER="2.6.27.21"
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
38if [ -e /var/ipfire/backup/coreupdate28_$KVER.tar.gz ]; then
39 echo Moving backup to backup-old ...
40 mv -f /var/ipfire/backup/coreupdate28_$KVER.tar.gz \
41 /var/ipfire/backup/coreupdate28_$KVER-old.tar.gz
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#
fa2637c2
AF
52tar czvf /var/ipfire/backup/coreupdate28_$KVER.tar.gz.tar.gz \
53 -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' -C / > /dev/null 2>&1
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#
64# Unpack the updated files
65#
66echo
67echo Unpack the updated files ...
68#
69tar xvf /opt/pakfire/tmp/files --preserve --numeric-owner -C / \
70 --no-overwrite-dir
71#
72# Modify grub.conf
73#
74echo
75echo Update grub configuration ...
76sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
77sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
78sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
79#
80# Made emergency - initramdisk
81#
82echo
83echo Create new Initramdisks ...
84cp -f /etc/mkinitcpio.conf.org /etc/mkinitcpio.conf
85sed -i "s| autodetect | |g" /etc/mkinitcpio.conf
86mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER-emergency.img
87cp -f /etc/mkinitcpio.conf.org /etc/mkinitcpio.conf
88#
89# Made initramdisk
90#
91if [ "${ROOT:0:7}" == "/dev/sd" ]; then
92 # Remove ide hook if root is on sda
93 sed -i "s| ide | |g" /etc/mkinitcpio.conf
94else
95if [ "${ROOT:0:7}" == "/dev/hd" ]; then
96 # Remove pata & sata hook if root is on hda
97 sed -i "s| pata | |g" /etc/mkinitcpio.conf
98 sed -i "s| sata | |g" /etc/mkinitcpio.conf
99fi
100fi
101mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER.img
102#
103# ReInstall grub
104#
105grub-install --no-floppy ${ROOT::`expr length $ROOT`-1} --recheck
106#
107# Rebuild Language
108#
5e3dc61b 109#perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
fa2637c2 110#
822e5541
AF
111# Delete old lm-sensor modullist...
112#
113rm -rf /etc/sysconfig/lm_sensors
114#
fa2637c2
AF
115# Restart snort
116#
117/etc/init.d/snort restart
118#
822e5541
AF
119# Change version of Pakfire.conf
120#
121sed -i "s|$OLDVERSION|$NEWVERSION|g" /opt/pakfire/etc/pakfire.conf
122#
123# Create new issue
124#
125echo IPFire v$NEWVERSION - www.ipfire.org > /etc/issue
126echo =================================== >> /etc/issue
127echo \\n running on \\s \\r \\m >> /etc/issue
128#
fa2637c2 129# This core-update need a reboot
822e5541 130/usr/bin/logger -p syslog.emerg -t core-upgrade-28 "Upgrade finished. Please reboot... "