]> git.ipfire.org Git - ipfire-2.x.git/blob - config/rootfiles/core/next/update.sh
toolchain: cpu-type fixes.
[ipfire-2.x.git] / config / rootfiles / core / next / update.sh
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...
29 core=52
30 for (( i=1; i<=$core; i++ ))
31 do
32 rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
33 done
34
35 #
36 #Stop services
37
38 /etc/init.d/ipsec stop
39
40 #
41 # Remove old strongswan libs
42 rm -rf /usr/lib/libcharon.so
43 rm -rf /usr/lib/libcharon.so.0
44 rm -rf /usr/lib/libcharon.so.0.0.0
45 rm -rf /usr/lib/libhydra.so
46 rm -rf /usr/lib/libhydra.so.0
47 rm -rf /usr/lib/libhydra.so.0.0.0
48 rm -rf /usr/lib/libstrongswan.so
49 rm -rf /usr/lib/libstrongswan.so.0
50 rm -rf /usr/lib/libstrongswan.so.0.0.0
51 rm -rf /usr/libexec/ipsec/plugins
52
53 # Remove old usb_modeswitch_data
54 rm -rf /etc/usb_modeswitch.d
55
56 #
57 #Extract files
58 extract_files
59
60 #
61 #Replace now unsupported EU regdomain by a "DE" comment.
62 sed -i -e "s|^options cfg80211 ieee80211_regdom=EU|#options cfg80211 ieee80211_regdom=DE|g" \
63 /etc/modprobe.d/cfg80211
64
65 #
66 #Start services
67
68 if [ `grep "ENABLED=on" /var/ipfire/vpn/settings` ]; then
69 /etc/init.d/ipsec start
70 fi
71
72 #
73 #Update Language cache
74 perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
75
76 #Rebuild module dep's
77 depmod 2.6.32.45-ipfire >/dev/null 2>&1
78 depmod 2.6.32.45-ipfire-pae >/dev/null 2>&1
79 depmod 2.6.32.45-ipfire-xen >/dev/null 2>&1
80
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
110
111 #
112 #Finish
113 /etc/init.d/fireinfo start
114 sendprofile
115 #Don't report the exitcode last command
116 exit 0