]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - config/rootfiles/core/38/update.sh
Rebuild qos-script at core38 update.
[people/pmueller/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#
d68506e9 27KVER="2.6.32.12"
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
618097cb
AF
49echo usr/lib/ipsec >> /opt/pakfire/tmp/ROOTFILES
50echo usr/libexec/ipsec >> /opt/pakfire/tmp/ROOTFILES
4335a594
AF
51tar cjvf /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \
52 -C / -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' > /dev/null 2>&1
53echo
54echo Update Kernel to $KVER ...
55# Remove old kernel, configs, initrd, modules ...
56#
57rm -rf /boot/System.map-*
58rm -rf /boot/config-*
59rm -rf /boot/ipfirerd-*
60rm -rf /boot/vmlinuz-*
61# Don't remove old xen modules. Kernel may stored outside.
62rm -rf /lib/modules/*-ipfire
b151637d 63
4335a594 64#
b151637d 65# remove openswan libs ...
4335a594 66#
b151637d
AF
67rm -rf /usr/lib/ipsec
68rm -rf /usr/libexec/ipsec
4335a594 69
635ba6a5
AF
70#
71# Stop Sevices
72#
d7cd8ad9 73/etc/init.d/collectd stop
635ba6a5
AF
74/etc/init.d/squid stop
75
4335a594
AF
76#
77# Backup grub.conf
78#
79cp -vf /boot/grub/grub.conf /boot/grub/grub.conf.org
80#
81# Unpack the updated files
82#
83echo
84echo Unpack the updated files ...
85#
86tar xvf /opt/pakfire/tmp/files --preserve --numeric-owner -C / \
87 --no-overwrite-dir
88#
89# Modify grub.conf
90#
91echo
92echo Update grub configuration ...
93sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
94sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
95sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
96
97if [ "$(grep "^serial" /boot/grub/grub.conf.org)" == "" ]; then
98 echo "grub use default console ..."
99else
100 echo "grub use serial console ..."
101 sed -i -e "s|splashimage|#splashimage|g" /boot/grub/grub.conf
102 sed -i -e "s|#serial|serial|g" /boot/grub/grub.conf
103 sed -i -e "s|#terminal|terminal|g" /boot/grub/grub.conf
104 sed -i -e "s| panic=10 | console=ttyS0,38400n8 panic=10 |g" /boot/grub/grub.conf
105fi
106#
107# Made emergency - initramdisk
108#
109echo
110echo Create new Initramdisks ...
111cp -f /etc/mkinitcpio.conf /etc/mkinitcpio.conf.org
112sed -i "s| autodetect | |g" /etc/mkinitcpio.conf
113mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER-emergency.img
114cp -f /etc/mkinitcpio.conf.org /etc/mkinitcpio.conf
115#
116# Made initramdisk
117#
118if [ "${ROOT:0:7}" == "/dev/sd" ]; then
119 # Remove ide hook if root is on sda
120 sed -i "s| ide | |g" /etc/mkinitcpio.conf
121else
122if [ "${ROOT:0:7}" == "/dev/hd" ]; then
123 # Remove pata & sata hook if root is on hda
124 sed -i "s| pata | |g" /etc/mkinitcpio.conf
125 sed -i "s| sata | |g" /etc/mkinitcpio.conf
126fi
127fi
128mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER.img
129#
130# ReInstall grub
131#
132grub-install --no-floppy ${ROOT::`expr length $ROOT`-1} --recheck
133#
134# Rebuild Language
135#
136perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
137#
d7cd8ad9
CS
138# Delete old lm-sensor modullist...
139#
140rm -rf /etc/sysconfig/lm_sensors
141#
142# Cleanup Collectd statistics...
143#
144PRECLEAN=`du -sh /var/log/rrd/collectd`
145#
146rm -rf /var/log/rrd*/collectd/localhost/processes-*/ps_count*
147rm -rf /var/log/rrd*/collectd/localhost/processes-*/ps_pagefaults*
148rm -rf /var/log/rrd*/collectd/localhost/processes-*/ps_stacksize*
149rm -rf /var/log/rrd*/collectd/localhost/processes-*/ps_state*
150rm -rf /var/log/rrd*/collectd/localhost/processes-*/ps_vm*
151#
152rm -rf /var/log/rrd*/collectd/localhost/interface/if_errors*
153rm -rf /var/log/rrd*/collectd/localhost/interface/if_packets*
154#
155rm -rf /var/log/rrd*/collectd/localhost/disk-*/disk_merged*
156rm -rf /var/log/rrd*/collectd/localhost/disk-*/disk_ops*
157rm -rf /var/log/rrd*/collectd/localhost/disk-*/disk_time*
158POSTCLEAN=`du -sh /var/log/rrd/collectd`
159#
160echo Cleaned up collectd directory from $PRECLEAN to $POSTCLEAN size.
161#
58fcc270
AF
162# USB Modeswitch conf now called setup, rename ...
163#
618097cb 164if [ -e /etc/usb_modeswitch.conf ]; then
58fcc270 165mv -f /etc/usb_modeswitch.conf /etc/usb_modeswitch.setup
618097cb 166fi
58fcc270 167#
618097cb
AF
168# rebuild qosscript if enabled...
169if [ -e /var/ipfire/qos/enable ]; then
170 /usr/local/bin/qosctrl stop
171fi
172/usr/local/bin/qosctrl generate
173if [ -e /var/ipfire/qos/enable ]; then
174 /usr/local/bin/qosctrl start
175fi
4335a594
AF
176#
177#
178# Todo convert ipsec.conf from open to strongswan...
179#
180#
635ba6a5
AF
181# Start Sevices
182#
183/etc/init.d/squid start
4335a594
AF
184#
185# This core-update need a reboot
186/usr/bin/logger -p syslog.emerg -t core-upgrade-38 "Upgrade finished. If you use a customized grub.cfg"
187/usr/bin/logger -p syslog.emerg -t core-upgrade-38 "Check it before reboot !!!"
188/usr/bin/logger -p syslog.emerg -t core-upgrade-38 " *** Please reboot... *** "