]> git.ipfire.org Git - ipfire-2.x.git/blame - config/rootfiles/core/38/update.sh
Fix ipp2p missing symbol (error_exit).
[ipfire-2.x.git] / config / rootfiles / core / 38 / update.sh
CommitLineData
4335a594
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#
0e067ff3 27KVER="2.6.32.11"
4335a594
AF
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/sysconfig/lm_sensors >> /opt/pakfire/tmp/ROOTFILES
49#
50# Todo: add openswan libs for backup ...
51#
52tar cjvf /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \
53 -C / -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' > /dev/null 2>&1
54echo
55echo Update Kernel to $KVER ...
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-*
62# Don't remove old xen modules. Kernel may stored outside.
63rm -rf /lib/modules/*-ipfire
64#
65# Todo: remove openswan libs ...
66#
67
635ba6a5
AF
68#
69# Stop Sevices
70#
71/etc/init.d/squid stop
72
4335a594
AF
73#
74# Backup grub.conf
75#
76cp -vf /boot/grub/grub.conf /boot/grub/grub.conf.org
77#
78# Unpack the updated files
79#
80echo
81echo Unpack the updated files ...
82#
83tar xvf /opt/pakfire/tmp/files --preserve --numeric-owner -C / \
84 --no-overwrite-dir
85#
86# Modify grub.conf
87#
88echo
89echo Update grub configuration ...
90sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
91sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
92sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
93
94if [ "$(grep "^serial" /boot/grub/grub.conf.org)" == "" ]; then
95 echo "grub use default console ..."
96else
97 echo "grub use serial console ..."
98 sed -i -e "s|splashimage|#splashimage|g" /boot/grub/grub.conf
99 sed -i -e "s|#serial|serial|g" /boot/grub/grub.conf
100 sed -i -e "s|#terminal|terminal|g" /boot/grub/grub.conf
101 sed -i -e "s| panic=10 | console=ttyS0,38400n8 panic=10 |g" /boot/grub/grub.conf
102fi
103#
104# Made emergency - initramdisk
105#
106echo
107echo Create new Initramdisks ...
108cp -f /etc/mkinitcpio.conf /etc/mkinitcpio.conf.org
109sed -i "s| autodetect | |g" /etc/mkinitcpio.conf
110mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER-emergency.img
111cp -f /etc/mkinitcpio.conf.org /etc/mkinitcpio.conf
112#
113# Made initramdisk
114#
115if [ "${ROOT:0:7}" == "/dev/sd" ]; then
116 # Remove ide hook if root is on sda
117 sed -i "s| ide | |g" /etc/mkinitcpio.conf
118else
119if [ "${ROOT:0:7}" == "/dev/hd" ]; then
120 # Remove pata & sata hook if root is on hda
121 sed -i "s| pata | |g" /etc/mkinitcpio.conf
122 sed -i "s| sata | |g" /etc/mkinitcpio.conf
123fi
124fi
125mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER.img
126#
127# ReInstall grub
128#
129grub-install --no-floppy ${ROOT::`expr length $ROOT`-1} --recheck
130#
131# Rebuild Language
132#
133perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
134#
135# Todo: rebuild qosscript if enabled...
136#
137#
138# Todo convert ipsec.conf from open to strongswan...
139#
140#
635ba6a5
AF
141# Start Sevices
142#
143/etc/init.d/squid start
144#
4335a594
AF
145# Delete old lm-sensor modullist...
146#
147rm -rf /etc/sysconfig/lm_sensors
148#
149# This core-update need a reboot
150/usr/bin/logger -p syslog.emerg -t core-upgrade-38 "Upgrade finished. If you use a customized grub.cfg"
151/usr/bin/logger -p syslog.emerg -t core-upgrade-38 "Check it before reboot !!!"
152/usr/bin/logger -p syslog.emerg -t core-upgrade-38 " *** Please reboot... *** "