]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - config/rootfiles/core/next/update.sh
kernel: update to 2.6.32.41.
[people/pmueller/ipfire-2.x.git] / config / rootfiles / core / next / update.sh
CommitLineData
a947a7a6
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) 2011 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#
e1aa5a9b 27KVER="2.6.32.41"
a947a7a6
AF
28MOUNT=`grep "kernel" /boot/grub/grub.conf | tail -n 1`
29# Nur den letzten Parameter verwenden
30echo $MOUNT > /dev/null
31MOUNT=$_
32if [ ! $MOUNT == "rw" ]; then
33 MOUNT="ro"
34fi
35
36
37#
38# check if we the backup file already exist
39if [ -e /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 ]; then
40 echo Moving backup to backup-old ...
41 mv -f /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \
42 /var/ipfire/backup/core-upgrade_$KVER-old.tar.bz2
43fi
44echo First we made a backup of all files that was inside of the
45echo update archive. This may take a while ...
46# Add some files that are not in the package to backup
47echo lib/modules >> /opt/pakfire/tmp/ROOTFILES
48echo boot >> /opt/pakfire/tmp/ROOTFILES
49
50# Backup the files
51tar cjvf /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \
52 -C / -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' > /dev/null 2>&1
53
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-*
62rm -rf /lib/modules/*-ipfire
63#
64# Backup grub.conf
65#
66cp -vf /boot/grub/grub.conf /boot/grub/grub.conf.org
67
68#
69# Stop services to save memory
70#
71/etc/init.d/snort stop
72/etc/init.d/squid stop
73/etc/init.d/ipsec stop
74
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#
85# Start services
86#
87/etc/init.d/squid start
88/etc/init.d/snort start
89if [ `grep "ENABLED=on" /var/ipfire/vpn/settings` ]; then
90 /etc/init.d/ipsec start
91fi
92
93#
94# Modify grub.conf
95#
96echo
97echo Update grub configuration ...
98ROOT=`mount | grep " / " | cut -d" " -f1`
99if [ ! -z $ROOT ]; then
100 ROOTUUID=`blkid -c /dev/null -sUUID $ROOT | cut -d'"' -f2`
101fi
102if [ ! -z $ROOTUUID ]; then
103 sed -i "s|ROOT|UUID=$ROOTUUID|g" /boot/grub/grub.conf
104else
105 sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
106fi
107sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
108sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
109
110if [ "$(grep "^serial" /boot/grub/grub.conf.org)" == "" ]; then
111 echo "grub use default console ..."
112else
113 echo "grub use serial console ..."
114 sed -i -e "s|splashimage|#splashimage|g" /boot/grub/grub.conf
115 sed -i -e "s|#serial|serial|g" /boot/grub/grub.conf
116 sed -i -e "s|#terminal|terminal|g" /boot/grub/grub.conf
117 sed -i -e "s| panic=10 | console=ttyS0,38400n8 panic=10 |g" /boot/grub/grub.conf
118fi
119#
120# ReInstall grub
121#
122grub-install --no-floppy ${ROOT::`expr length $ROOT`-1} --recheck
123#
124# Rebuild Language
125#
126perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
127#
128# Delete old lm-sensor modullist to force search at next boot
129#
130rm -rf /etc/sysconfig/lm_sensors
131##
132## Change version of Pakfire.conf
133##
134#OLDVERSION=`grep "version = " /opt/pakfire/etc/pakfire.conf | cut -d'"' -f2`
135#NEWVERSION="2.9"
136#sed -i "s|$OLDVERSION|$NEWVERSION|g" /opt/pakfire/etc/pakfire.conf
137##
138## After pakfire has ended run it again and update the lists and do upgrade
139##
140#echo '#!/bin/bash' > /tmp/pak_update
141#echo 'while [ "$(ps -A | grep " update.sh")" != "" ]; do' >> /tmp/pak_update
142#echo ' sleep 1' >> /tmp/pak_update
143#echo 'done' >> /tmp/pak_update
144#echo 'while [ "$(ps -A | grep " pakfire")" != "" ]; do' >> /tmp/pak_update
145#echo ' sleep 1' >> /tmp/pak_update
146#echo 'done' >> /tmp/pak_update
147#echo '/opt/pakfire/pakfire update -y --force' >> /tmp/pak_update
148#echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
149#echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
150#echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
151#echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 "Upgrade finished. If you use a customized grub.cfg"' >> /tmp/pak_update
152#echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 "Check it before reboot !!!"' >> /tmp/pak_update
153#echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 " *** Please reboot... *** "' >> /tmp/pak_update
154#echo 'touch /var/run/need_reboot ' >> /tmp/pak_update
155#
156#chmod +x /tmp/pak_update
157#/tmp/pak_update &
158#echo
159#echo Please wait until pakfire has ended...
160#echo
161/usr/bin/logger -p syslog.emerg -t core-upgrade-next "Upgrade finished. If you use a customized grub.cfg"
162/usr/bin/logger -p syslog.emerg -t core-upgrade-next "Check it before reboot !!!"
163/usr/bin/logger -p syslog.emerg -t core-upgrade-next " *** Please reboot... *** "