]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - config/rootfiles/core/31/update.sh
Core31 updater should not remove xen kernel modules
[people/pmueller/ipfire-2.x.git] / config / rootfiles / core / 31 / update.sh
CommitLineData
a2f2c8dd
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) 2009 IPFire-Team <info@ipfire.org>. #
21# #
22############################################################################
23#
24. /opt/pakfire/lib/functions.sh
25/usr/local/bin/backupctrl exclude >/dev/null 2>&1
9947cfd1
AF
26#
27KVER="2.6.27.31"
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=$_
33#
34# check if we the backup file already exist
35if [ -e /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 ]; then
36 echo Moving backup to backup-old ...
37 mv -f /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \
38 /var/ipfire/backup/core-upgrade_$KVER-old.tar.bz2
39fi
40echo First we made a backup of all files that was inside of the
41echo update archive. This may take a while ...
42# Add some files that are not in the package to backup
43echo lib/modules >> /opt/pakfire/tmp/ROOTFILES
44echo boot >> /opt/pakfire/tmp/ROOTFILES
45echo etc/sysconfig/lm_sensors >> /opt/pakfire/tmp/ROOTFILES
46#
47tar cjvf /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \
48 -C / -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' > /dev/null 2>&1
49echo
50echo Update Kernel to $KVER ...
51# Remove old kernel, configs, initrd, modules ...
52#
53rm -rf /boot/System.map-*
54rm -rf /boot/config-*
55rm -rf /boot/ipfirerd-*
56rm -rf /boot/vmlinuz-*
72a5a120
AF
57# Don't remove old xen modules. Kernel may stored outside.
58rm -rf /lib/modules/*-ipfire
9947cfd1
AF
59#
60# Backup grub.conf
61#
62cp -vf /boot/grub/grub.conf /boot/grub/grub.conf.org
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
80if [ "$(grep "^serial" /boot/grub/grub.conf.org)" == "" ]; then
81 echo "grub use default console ..."
82else
83 echo "grub use serial console ..."
84 sed -i -e "s|splashimage|#splashimage|g" /boot/grub/grub.conf
85 sed -i -e "s|#serial|serial|g" /boot/grub/grub.conf
86 sed -i -e "s|#terminal|terminal|g" /boot/grub/grub.conf
87 sed -i -e "s| panic=10 | console=ttyS0,38400n8 panic=10 |g" /boot/grub/grub.conf
88fi
89#
90# Made emergency - initramdisk
91#
92echo
93echo Create new Initramdisks ...
94cp -f /etc/mkinitcpio.conf.org /etc/mkinitcpio.conf
95sed -i "s| autodetect | |g" /etc/mkinitcpio.conf
96mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER-emergency.img
97cp -f /etc/mkinitcpio.conf.org /etc/mkinitcpio.conf
98#
99# Made initramdisk
100#
101if [ "${ROOT:0:7}" == "/dev/sd" ]; then
102 # Remove ide hook if root is on sda
103 sed -i "s| ide | |g" /etc/mkinitcpio.conf
104else
105if [ "${ROOT:0:7}" == "/dev/hd" ]; then
106 # Remove pata & sata hook if root is on hda
107 sed -i "s| pata | |g" /etc/mkinitcpio.conf
108 sed -i "s| sata | |g" /etc/mkinitcpio.conf
109fi
110fi
111mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER.img
112#
113# ReInstall grub
114#
115grub-install --no-floppy ${ROOT::`expr length $ROOT`-1} --recheck
116#
117# Rebuild Language
118#
3106e11a 119perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
9947cfd1 120#
7f32c6c3 121# Add some entries to openvpn config
9947cfd1 122#
7a1fb216 123if [ ! -x "/var/ipfire/ovpn/server.conf" ]; then
9947cfd1
AF
124 grep -q "script-security" /var/ipfire/ovpn/server.conf \
125 || echo "script-security 3 system" >> /var/ipfire/ovpn/server.conf
126fi
7a1fb216
MS
127
128if [ ! -x "/var/ipfire/ovpn/server.conf" ]; then
07675dc3
MS
129 grep -q "ifconfig-pool-persist" /var/ipfire/ovpn/server.conf \
130 || echo "ifconfig-pool-persist /var/ipfire/ovpn/ovpn-leases.db 3600" >> /var/ipfire/ovpn/server.conf
7a1fb216
MS
131fi
132
133if [ ! -x "/var/ipfire/ovpn/ovpn-leases.db" ]; then
134 touch /var/ipfire/ovpn/ovpn-leases.db
07675dc3 135 chmod 600 /var/ipfire/ovpn/ovpn-leases.db
7f32c6c3 136 chown nobody:nobody /var/ipfire/ovpn/ovpn-leases.db
7a1fb216 137fi
9947cfd1
AF
138#
139# Delete old lm-sensor modullist...
140#
141rm -rf /etc/sysconfig/lm_sensors
142#
143# This core-update need a reboot
144/usr/bin/logger -p syslog.emerg -t core-upgrade-31 "Upgrade finished. If you use a customized grub.cfg"
145/usr/bin/logger -p syslog.emerg -t core-upgrade-31 "Check it before reboot !!!"
146/usr/bin/logger -p syslog.emerg -t core-upgrade-31 " *** Please reboot... *** "