]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - config/rootfiles/oldcore/53/update.sh
Merge branch 'kernel-update' of ssh://git.ipfire.org/pub/git/ipfire-2.x into kernel...
[people/teissler/ipfire-2.x.git] / config / rootfiles / oldcore / 53 / update.sh
CommitLineData
6d7da253
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...
07590904 29core=53
6d7da253
AF
30for (( i=1; i<=$core; i++ ))
31do
32 rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
33done
34
35#
36#Stop services
b0dcbdea
AF
37
38/etc/init.d/ipsec stop
736d1ed9 39/etc/init.d/apache stop
b0dcbdea
AF
40
41#
42# Remove old strongswan libs
43rm -rf /usr/lib/libcharon.so
44rm -rf /usr/lib/libcharon.so.0
45rm -rf /usr/lib/libcharon.so.0.0.0
46rm -rf /usr/lib/libhydra.so
47rm -rf /usr/lib/libhydra.so.0
48rm -rf /usr/lib/libhydra.so.0.0.0
49rm -rf /usr/lib/libstrongswan.so
50rm -rf /usr/lib/libstrongswan.so.0
51rm -rf /usr/lib/libstrongswan.so.0.0.0
52rm -rf /usr/libexec/ipsec/plugins
53
54# Remove old usb_modeswitch_data
55rm -rf /etc/usb_modeswitch.d
6d7da253
AF
56
57#
58#Extract files
59extract_files
60
b0dcbdea
AF
61#
62#Replace now unsupported EU regdomain by a "DE" comment.
63sed -i -e "s|^options cfg80211 ieee80211_regdom=EU|#options cfg80211 ieee80211_regdom=DE|g" \
64 /etc/modprobe.d/cfg80211
65
6d7da253
AF
66#
67#Start services
b0dcbdea 68
736d1ed9 69/etc/init.d/apache start
b0dcbdea
AF
70if [ `grep "ENABLED=on" /var/ipfire/vpn/settings` ]; then
71 /etc/init.d/ipsec start
72fi
6d7da253
AF
73
74#
75#Update Language cache
76perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
77
78#Rebuild module dep's
c18090e7
AF
79depmod -a 2.6.32.45-ipfire >/dev/null 2>&1
80depmod -a 2.6.32.45-ipfire-pae >/dev/null 2>&1
81depmod -a 2.6.32.45-ipfire-xen >/dev/null 2>&1
82
83#Rebuild initrd's because some compat-wireless modules are inside
84/sbin/dracut --force --verbose /boot/ipfirerd-2.6.32.45.img 2.6.32.45-ipfire
85if [ -e /boot/ipfirerd-2.6.32.45-pae.img ]; then
86/sbin/dracut --force --verbose /boot/ipfirerd-2.6.32.45-pae.img 2.6.32.45-ipfire-pae
87fi
88if [ -e /boot/ipfirerd-2.6.32.45-xen.img ]; then
89/sbin/dracut --force --verbose /boot/ipfirerd-2.6.32.45-xen.img 2.6.32.45-ipfire-xen
90fi
91
92sync
b0dcbdea
AF
93
94#
95# After pakfire has ended run it again and update the lists and do upgrade
96#
97echo '#!/bin/bash' > /tmp/pak_update
98echo 'while [ "$(ps -A | grep " update.sh")" != "" ]; do' >> /tmp/pak_update
99echo ' sleep 1' >> /tmp/pak_update
100echo 'done' >> /tmp/pak_update
101echo 'while [ "$(ps -A | grep " pakfire")" != "" ]; do' >> /tmp/pak_update
102echo ' sleep 1' >> /tmp/pak_update
103echo 'done' >> /tmp/pak_update
104echo '/opt/pakfire/pakfire update -y --force' >> /tmp/pak_update
105echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
106echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
107echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
108echo 'sync && sync && sync' >> /tmp/pak_update
109echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-53 " *** Please reboot... *** "' >> /tmp/pak_update
110echo 'touch /var/run/need_reboot ' >> /tmp/pak_update
111
112#
113chmod +x /tmp/pak_update
114/tmp/pak_update &
115echo
116echo Please wait until pakfire has ended...
117echo
6d7da253
AF
118
119#
120#Finish
121/etc/init.d/fireinfo start
122sendprofile
123#Don't report the exitcode last command
124exit 0