]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - config/rootfiles/core/test/update.sh
Start updater (test).
[people/pmueller/ipfire-2.x.git] / config / rootfiles / core / test / update.sh
CommitLineData
b0ab1b09
AF
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) 2010 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#
27KVER="2.6.32.19"
28ROOT=`grep "root=" /boot/grub/grub.conf | cut -d"=" -f2 | cut -d" " -f1 | tail -n 1`
29MOUNT=`grep "kernel" /boot/grub/grub.conf | tail -n 1`
30# Nur den letzten Parameter verwenden
31echo $MOUNT > /dev/null
32MOUNT=$_
33if [ ! $MOUNT == "rw" ]; then
34 MOUNT="ro"
35fi
36#
37# check if we the backup file already exist
38if [ -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
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
48echo etc/mkinitcpio.conf >> /opt/pakfire/tmp/ROOTFILES
49echo etc/mkinitcpio.conf.org >> /opt/pakfire/tmp/ROOTFILES
50echo etc/mkinitcpio.d >> /opt/pakfire/tmp/ROOTFILES
51echo lib/initcpio >> /opt/pakfire/tmp/ROOTFILES
52echo sbin/mkinitcpio >> /opt/pakfire/tmp/ROOTFILES
53
54# Backup the files
55tar cjvf /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \
56 -C / -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' > /dev/null 2>&1
57
58echo
59echo Update Kernel to $KVER ...
60# Remove old kernel, configs, initrd, modules ...
61#
62rm -rf /boot/System.map-*
63rm -rf /boot/config-*
64rm -rf /boot/ipfirerd-*
65rm -rf /boot/vmlinuz-*
66rm -rf /lib/modules/*-ipfire
67# Remove mkinitcpio
68rm -rf /etc/mkinitcpio.*
69rm -rf /lib/initcpio
70rm -rf /sbin/mkinitcpio
71#
72# Backup grub.conf
73#
74cp -vf /boot/grub/grub.conf /boot/grub/grub.conf.org
75#
76# Unpack the updated files
77#
78echo
79echo Unpack the updated files ...
80#
81tar xvf /opt/pakfire/tmp/files --preserve --numeric-owner -C / \
82 --no-overwrite-dir
83#
84# Modify grub.conf
85#
86echo
87echo Update grub configuration ...
88sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
89sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
90sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
91
92if [ "$(grep "^serial" /boot/grub/grub.conf.org)" == "" ]; then
93 echo "grub use default console ..."
94else
95 echo "grub use serial console ..."
96 sed -i -e "s|splashimage|#splashimage|g" /boot/grub/grub.conf
97 sed -i -e "s|#serial|serial|g" /boot/grub/grub.conf
98 sed -i -e "s|#terminal|terminal|g" /boot/grub/grub.conf
99 sed -i -e "s| panic=10 | console=ttyS0,38400n8 panic=10 |g" /boot/grub/grub.conf
100fi
101#
102# ReInstall grub
103#
104grub-install --no-floppy ${ROOT::`expr length $ROOT`-1} --recheck
105#
106# Rebuild Language
107#
108#perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
109#
110# Delete old lm-sensor modullist to force search at next boot
111#
112rm -rf /etc/sysconfig/lm_sensors
113/usr/bin/logger -p syslog.emerg -t kernel "Upgrade finished. If you use a customized grub.cfg"
114/usr/bin/logger -p syslog.emerg -t kernel "Check it before reboot !!!"
115/usr/bin/logger -p syslog.emerg -t kernel " *** Please reboot... *** "