]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - config/rootfiles/core/51/update.sh
core51: erase backups of previous core updates.
[people/teissler/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
82
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#
99/etc/init.d/squid start
100/etc/init.d/snort start
101if [ `grep "ENABLED=on" /var/ipfire/vpn/settings` ]; then
102 /etc/init.d/ipsec start
103fi
104
105#
106# Modify grub.conf
107#
108echo
109echo Update grub configuration ...
110ROOT=`mount | grep " / " | cut -d" " -f1`
111if [ ! -z $ROOT ]; then
112 ROOTUUID=`blkid -c /dev/null -sUUID $ROOT | cut -d'"' -f2`
113fi
114if [ ! -z $ROOTUUID ]; then
115 sed -i "s|ROOT|UUID=$ROOTUUID|g" /boot/grub/grub.conf
116else
117 sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
118fi
119sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
120sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
121
122if [ "$(grep "^serial" /boot/grub/grub.conf.org)" == "" ]; then
123 echo "grub use default console ..."
124else
125 echo "grub use serial console ..."
126 sed -i -e "s|splashimage|#splashimage|g" /boot/grub/grub.conf
127 sed -i -e "s|#serial|serial|g" /boot/grub/grub.conf
128 sed -i -e "s|#terminal|terminal|g" /boot/grub/grub.conf
129 sed -i -e "s| panic=10 | console=ttyS0,38400n8 panic=10 |g" /boot/grub/grub.conf
130fi
131#
132# ReInstall grub
133#
134grub-install --no-floppy ${ROOT::`expr length $ROOT`-1} --recheck
135#
136# Rebuild Language
137#
138perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
139#
140# Delete old lm-sensor modullist to force search at next boot
141#
142rm -rf /etc/sysconfig/lm_sensors
143
144# Reboot message to console
145/usr/bin/logger -p syslog.emerg -t core-upgrade-51 "Upgrade finished. If you use a customized grub.cfg"
146/usr/bin/logger -p syslog.emerg -t core-upgrade-51 "Check it before reboot !!!"
147/usr/bin/logger -p syslog.emerg -t core-upgrade-51 " *** Please reboot... *** "
148
e935465a
AF
149# This update need a reboot.
150touch /var/run/need_reboot
6c8dc2fd
AF
151
152#
153#Finish
154/etc/init.d/fireinfo start
155sendprofile
156#Don't report the exitcode last command
157exit 0