]> git.ipfire.org Git - people/ummeegge/ipfire-2.x.git/blame - config/rootfiles/core/51/update.sh
core51: stop/start dhcp server at update.
[people/ummeegge/ipfire-2.x.git] / config / rootfiles / core / 51 / update.sh
CommitLineData
6c8dc2fd
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
27#
28# Remove old core updates from pakfire cache to save space...
29core=51
30for (( i=1; i<=$core; i++ ))
31do
32 rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
33done
34
35#
36KVER="xxxKVERxxx"
37MOUNT=`grep "kernel" /boot/grub/grub.conf | tail -n 1`
38# Nur den letzten Parameter verwenden
39echo $MOUNT > /dev/null
40MOUNT=$_
41if [ ! $MOUNT == "rw" ]; then
42 MOUNT="ro"
43fi
44
45
46#
2c46d7e2
AF
47# erase old backups to prefent disk-full on small installations
48rm -f /var/ipfire/backup/core-upgrade_*.tar.bz2
49
50#
51# backup
6c8dc2fd
AF
52echo First we made a backup of all files that was inside of the
53echo update archive. This may take a while ...
54# Add some files that are not in the package to backup
55echo lib/modules >> /opt/pakfire/tmp/ROOTFILES
56echo boot >> /opt/pakfire/tmp/ROOTFILES
57
58# Backup the files
59tar cjvf /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \
60 -C / -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' > /dev/null 2>&1
61
62echo
63echo Update Kernel to $KVER ...
64# Remove old kernel, configs, initrd, modules ...
65#
66rm -rf /boot/System.map-*
67rm -rf /boot/config-*
68rm -rf /boot/ipfirerd-*
69rm -rf /boot/vmlinuz-*
e935465a 70rm -rf /lib/modules/*
6c8dc2fd
AF
71#
72# Backup grub.conf
73#
74cp -vf /boot/grub/grub.conf /boot/grub/grub.conf.org
75
76#
77# Stop services to save memory
78#
79/etc/init.d/snort stop
80/etc/init.d/squid stop
81/etc/init.d/ipsec stop
b01a1126 82/etc/init.d/dhcp stop
6c8dc2fd
AF
83#
84# Unpack the updated files
85#
86echo
87echo Unpack the updated files ...
88#
89tar xvf /opt/pakfire/tmp/files --preserve --numeric-owner -C / \
90 --no-overwrite-dir
91
92#
93# Enable ralink rt73 hardware encryption again
94rm -f /etc/modprobe.d/ralink_wireless
95
96#
97# Start services
98#
b01a1126 99/etc/init.d/dhcp start
6c8dc2fd
AF
100/etc/init.d/squid start
101/etc/init.d/snort start
102if [ `grep "ENABLED=on" /var/ipfire/vpn/settings` ]; then
103 /etc/init.d/ipsec start
104fi
105
b01a1126 106
6c8dc2fd
AF
107#
108# Modify grub.conf
109#
110echo
111echo Update grub configuration ...
112ROOT=`mount | grep " / " | cut -d" " -f1`
113if [ ! -z $ROOT ]; then
114 ROOTUUID=`blkid -c /dev/null -sUUID $ROOT | cut -d'"' -f2`
115fi
116if [ ! -z $ROOTUUID ]; then
117 sed -i "s|ROOT|UUID=$ROOTUUID|g" /boot/grub/grub.conf
118else
119 sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
120fi
121sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
122sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
123
124if [ "$(grep "^serial" /boot/grub/grub.conf.org)" == "" ]; then
125 echo "grub use default console ..."
126else
127 echo "grub use serial console ..."
128 sed -i -e "s|splashimage|#splashimage|g" /boot/grub/grub.conf
129 sed -i -e "s|#serial|serial|g" /boot/grub/grub.conf
130 sed -i -e "s|#terminal|terminal|g" /boot/grub/grub.conf
131 sed -i -e "s| panic=10 | console=ttyS0,38400n8 panic=10 |g" /boot/grub/grub.conf
132fi
133#
134# ReInstall grub
135#
136grub-install --no-floppy ${ROOT::`expr length $ROOT`-1} --recheck
137#
138# Rebuild Language
139#
140perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
141#
142# Delete old lm-sensor modullist to force search at next boot
143#
144rm -rf /etc/sysconfig/lm_sensors
145
146# Reboot message to console
147/usr/bin/logger -p syslog.emerg -t core-upgrade-51 "Upgrade finished. If you use a customized grub.cfg"
148/usr/bin/logger -p syslog.emerg -t core-upgrade-51 "Check it before reboot !!!"
149/usr/bin/logger -p syslog.emerg -t core-upgrade-51 " *** Please reboot... *** "
150
e935465a
AF
151# This update need a reboot.
152touch /var/run/need_reboot
6c8dc2fd
AF
153
154#
155#Finish
156/etc/init.d/fireinfo start
157sendprofile
158#Don't report the exitcode last command
159exit 0