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