]> git.ipfire.org Git - ipfire-2.x.git/blame - config/rootfiles/core/next/update.sh
toolchain: cpu-type fixes.
[ipfire-2.x.git] / config / rootfiles / core / next / update.sh
CommitLineData
a947a7a6
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
a947a7a6
AF
26
27#
897d5a7e
AF
28# Remove old core updates from pakfire cache to save space...
29core=52
30for (( i=1; i<=$core; i++ ))
31do
32 rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
33done
a947a7a6 34
a947a7a6 35#
897d5a7e 36#Stop services
a947a7a6 37
a947a7a6
AF
38/etc/init.d/ipsec stop
39
aee8d141
AF
40#
41# Remove old strongswan libs
42rm -rf /usr/lib/libcharon.so
43rm -rf /usr/lib/libcharon.so.0
44rm -rf /usr/lib/libcharon.so.0.0.0
45rm -rf /usr/lib/libhydra.so
46rm -rf /usr/lib/libhydra.so.0
47rm -rf /usr/lib/libhydra.so.0.0.0
48rm -rf /usr/lib/libstrongswan.so
49rm -rf /usr/lib/libstrongswan.so.0
50rm -rf /usr/lib/libstrongswan.so.0.0.0
51rm -rf /usr/libexec/ipsec/plugins
52
7667a59b
AF
53# Remove old usb_modeswitch_data
54rm -rf /etc/usb_modeswitch.d
55
a947a7a6 56#
897d5a7e
AF
57#Extract files
58extract_files
a947a7a6 59
e57d2133
AF
60#
61#Replace now unsupported EU regdomain by a "DE" comment.
62sed -i -e "s|^options cfg80211 ieee80211_regdom=EU|#options cfg80211 ieee80211_regdom=DE|g" \
63 /etc/modprobe.d/cfg80211
64
f793992b 65#
897d5a7e 66#Start services
f793992b 67
a947a7a6
AF
68if [ `grep "ENABLED=on" /var/ipfire/vpn/settings` ]; then
69 /etc/init.d/ipsec start
70fi
71
72#
897d5a7e 73#Update Language cache
a947a7a6 74perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
897d5a7e
AF
75
76#Rebuild module dep's
80337f48
AF
77depmod 2.6.32.45-ipfire >/dev/null 2>&1
78depmod 2.6.32.45-ipfire-pae >/dev/null 2>&1
79depmod 2.6.32.45-ipfire-xen >/dev/null 2>&1
897d5a7e 80
a947a7a6
AF
81## Change version of Pakfire.conf
82##
83#OLDVERSION=`grep "version = " /opt/pakfire/etc/pakfire.conf | cut -d'"' -f2`
84#NEWVERSION="2.9"
85#sed -i "s|$OLDVERSION|$NEWVERSION|g" /opt/pakfire/etc/pakfire.conf
86##
87## After pakfire has ended run it again and update the lists and do upgrade
88##
89#echo '#!/bin/bash' > /tmp/pak_update
90#echo 'while [ "$(ps -A | grep " update.sh")" != "" ]; do' >> /tmp/pak_update
91#echo ' sleep 1' >> /tmp/pak_update
92#echo 'done' >> /tmp/pak_update
93#echo 'while [ "$(ps -A | grep " pakfire")" != "" ]; do' >> /tmp/pak_update
94#echo ' sleep 1' >> /tmp/pak_update
95#echo 'done' >> /tmp/pak_update
96#echo '/opt/pakfire/pakfire update -y --force' >> /tmp/pak_update
97#echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
98#echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
99#echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
100#echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 "Upgrade finished. If you use a customized grub.cfg"' >> /tmp/pak_update
101#echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 "Check it before reboot !!!"' >> /tmp/pak_update
102#echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 " *** Please reboot... *** "' >> /tmp/pak_update
103#echo 'touch /var/run/need_reboot ' >> /tmp/pak_update
104#
105#chmod +x /tmp/pak_update
106#/tmp/pak_update &
107#echo
108#echo Please wait until pakfire has ended...
109#echo
897d5a7e
AF
110
111#
112#Finish
113/etc/init.d/fireinfo start
114sendprofile
115#Don't report the exitcode last command
116exit 0