]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - config/rootfiles/core/38/update.sh
Merge branch 'master' of ssh://git.ipfire.org/pub/git/ipfire-2.x
[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
c131aeaf
AF
53
54#
55# Stop Sevices
56#
57/etc/init.d/collectd stop
58/etc/init.d/squid stop
59/etc/init.d/ipsec stop
60
4335a594
AF
61echo
62echo Update Kernel to $KVER ...
63# Remove old kernel, configs, initrd, modules ...
64#
65rm -rf /boot/System.map-*
66rm -rf /boot/config-*
67rm -rf /boot/ipfirerd-*
68rm -rf /boot/vmlinuz-*
69# Don't remove old xen modules. Kernel may stored outside.
70rm -rf /lib/modules/*-ipfire
b151637d 71
4335a594 72#
b151637d 73# remove openswan libs ...
4335a594 74#
b151637d
AF
75rm -rf /usr/lib/ipsec
76rm -rf /usr/libexec/ipsec
4335a594
AF
77
78#
79# Backup grub.conf
80#
81cp -vf /boot/grub/grub.conf /boot/grub/grub.conf.org
82#
d2d2da10
AF
83# Stop sysklogd
84/etc/init.d/sysklogd stop
85#
4335a594
AF
86# Unpack the updated files
87#
88echo
89echo Unpack the updated files ...
90#
91tar xvf /opt/pakfire/tmp/files --preserve --numeric-owner -C / \
92 --no-overwrite-dir
93#
d2d2da10
AF
94# Start Sevices
95/etc/init.d/sysklogd start
96/etc/init.d/squid start
97#
4335a594
AF
98# Modify grub.conf
99#
100echo
101echo Update grub configuration ...
102sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
103sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
104sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
105
106if [ "$(grep "^serial" /boot/grub/grub.conf.org)" == "" ]; then
107 echo "grub use default console ..."
108else
109 echo "grub use serial console ..."
110 sed -i -e "s|splashimage|#splashimage|g" /boot/grub/grub.conf
111 sed -i -e "s|#serial|serial|g" /boot/grub/grub.conf
112 sed -i -e "s|#terminal|terminal|g" /boot/grub/grub.conf
113 sed -i -e "s| panic=10 | console=ttyS0,38400n8 panic=10 |g" /boot/grub/grub.conf
114fi
115#
116# Made emergency - initramdisk
117#
118echo
119echo Create new Initramdisks ...
120cp -f /etc/mkinitcpio.conf /etc/mkinitcpio.conf.org
121sed -i "s| autodetect | |g" /etc/mkinitcpio.conf
122mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER-emergency.img
123cp -f /etc/mkinitcpio.conf.org /etc/mkinitcpio.conf
124#
125# Made initramdisk
126#
127if [ "${ROOT:0:7}" == "/dev/sd" ]; then
128 # Remove ide hook if root is on sda
129 sed -i "s| ide | |g" /etc/mkinitcpio.conf
130else
131if [ "${ROOT:0:7}" == "/dev/hd" ]; then
132 # Remove pata & sata hook if root is on hda
133 sed -i "s| pata | |g" /etc/mkinitcpio.conf
134 sed -i "s| sata | |g" /etc/mkinitcpio.conf
135fi
136fi
137mkinitcpio -k $KVER-ipfire -g /boot/ipfirerd-$KVER.img
138#
139# ReInstall grub
140#
141grub-install --no-floppy ${ROOT::`expr length $ROOT`-1} --recheck
142#
143# Rebuild Language
144#
145perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
146#
d7cd8ad9
CS
147# Cleanup Collectd statistics...
148#
149PRECLEAN=`du -sh /var/log/rrd/collectd`
150#
151rm -rf /var/log/rrd*/collectd/localhost/processes-*/ps_count*
152rm -rf /var/log/rrd*/collectd/localhost/processes-*/ps_pagefaults*
153rm -rf /var/log/rrd*/collectd/localhost/processes-*/ps_stacksize*
154rm -rf /var/log/rrd*/collectd/localhost/processes-*/ps_state*
155rm -rf /var/log/rrd*/collectd/localhost/processes-*/ps_vm*
156#
157rm -rf /var/log/rrd*/collectd/localhost/interface/if_errors*
158rm -rf /var/log/rrd*/collectd/localhost/interface/if_packets*
159#
160rm -rf /var/log/rrd*/collectd/localhost/disk-*/disk_merged*
161rm -rf /var/log/rrd*/collectd/localhost/disk-*/disk_ops*
162rm -rf /var/log/rrd*/collectd/localhost/disk-*/disk_time*
48cad624
AF
163#
164rm -rf /var/log/rrd*/collectd/localhost/iptables-filter-INPUT/*-DROP_Wirelessinput*
165rm -rf /var/log/rrd*/collectd/localhost/iptables-filter-FORWARD/*-DROP_Wirelessforward*
166rm -rf /var/log/rrd*/collectd/localhost/iptables-filter-OUTGOINGFW
d7cd8ad9
CS
167POSTCLEAN=`du -sh /var/log/rrd/collectd`
168#
169echo Cleaned up collectd directory from $PRECLEAN to $POSTCLEAN size.
170#
d2d2da10
AF
171# Start collectd
172/etc/init.d/collectd start
173#
174# Delete old lm-sensor modullist to force search at next boot
175#
176rm -rf /etc/sysconfig/lm_sensors
177#
58fcc270
AF
178# USB Modeswitch conf now called setup, rename ...
179#
618097cb 180if [ -e /etc/usb_modeswitch.conf ]; then
58fcc270 181mv -f /etc/usb_modeswitch.conf /etc/usb_modeswitch.setup
618097cb 182fi
58fcc270 183#
618097cb
AF
184# rebuild qosscript if enabled...
185if [ -e /var/ipfire/qos/enable ]; then
186 /usr/local/bin/qosctrl stop
7d3d5dbd 187 /usr/local/bin/qosctrl generate
618097cb
AF
188 /usr/local/bin/qosctrl start
189fi
4335a594
AF
190#
191#
e3c5d22a
AF
192# convert ipsec.conf from openswan to strongswan...
193mv /var/ipfire/vpn/ipsec.conf /var/ipfire/vpn/ipsec.conf.org
194cat /var/ipfire/vpn/ipsec.conf.org | \
195grep -v "disablearrivalcheck=" | \
63249c67 196grep -v "klipsdebug=" | \
e3c5d22a 197grep -v "leftfirewall=" | \
b2d5dd6d 198grep -v "lefthostaccess=" | \
e3c5d22a
AF
199grep -v "charonstart=" | \
200grep -v "aggrmode=" > /var/ipfire/vpn/ipsec.conf
201sed -i "s|ipsec[0-9]=||g" /var/ipfire/vpn/ipsec.conf
63249c67
AF
202sed -i "s|nat_t ||g" /var/ipfire/vpn/ipsec.conf
203sed -i "s|klips ||g" /var/ipfire/vpn/ipsec.conf
b2d5dd6d 204sed -i "s|^conn [A-Za-z].*$|&\n\tleftfirewall=yes\n\tlefthostaccess=yes|g" /var/ipfire/vpn/ipsec.conf
e3c5d22a
AF
205sed -i "s|^config setup$|&\n\tcharonstart=no|g" /var/ipfire/vpn/ipsec.conf
206chown nobody:nobody /var/ipfire/vpn/ipsec.conf
207chmod 644 /var/ipfire/vpn/ipsec.conf
4335a594 208#
d2d2da10
AF
209# Add cryptodev to /etc/sysconfig/modules
210mv /etc/sysconfig/modules /etc/sysconfig/modules.org
211cat /etc/sysconfig/modules.org | \
212grep -v "cryptodev" | \
213grep -v "# End /etc/sysconfig/modules" > /etc/sysconfig/modules
214echo "" >> /etc/sysconfig/modules
215echo "### cryptodev" >> /etc/sysconfig/modules
216echo "#" >> /etc/sysconfig/modules
217echo "cryptodev" >> /etc/sysconfig/modules
218echo "" >> /etc/sysconfig/modules
219echo "# End /etc/sysconfig/modules" >> /etc/sysconfig/modules
220chmod 644 /etc/sysconfig/modules
4335a594
AF
221#
222# This core-update need a reboot
223/usr/bin/logger -p syslog.emerg -t core-upgrade-38 "Upgrade finished. If you use a customized grub.cfg"
224/usr/bin/logger -p syslog.emerg -t core-upgrade-38 "Check it before reboot !!!"
225/usr/bin/logger -p syslog.emerg -t core-upgrade-38 " *** Please reboot... *** "