]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - config/rootfiles/core/next/update.sh
core-next: remove kernel-update from update.sh.
[people/teissler/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 #
54 #Extract files
55 extract_files
56
57 #
58 #Start services
59
60 if [ `grep "ENABLED=on" /var/ipfire/vpn/settings` ]; then
61 /etc/init.d/ipsec start
62 fi
63
64 #
65 #Update Language cache
66 perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
67
68 #Rebuild module dep's
69 #depmod 2.6.32.45-ipfire >/dev/null 2>&1
70 #depmod 2.6.32.45-ipfire-pae >/dev/null 2>&1
71 #depmod 2.6.32.45-ipfire-xen >/dev/null 2>&1
72
73 ## Change version of Pakfire.conf
74 ##
75 #OLDVERSION=`grep "version = " /opt/pakfire/etc/pakfire.conf | cut -d'"' -f2`
76 #NEWVERSION="2.9"
77 #sed -i "s|$OLDVERSION|$NEWVERSION|g" /opt/pakfire/etc/pakfire.conf
78 ##
79 ## After pakfire has ended run it again and update the lists and do upgrade
80 ##
81 #echo '#!/bin/bash' > /tmp/pak_update
82 #echo 'while [ "$(ps -A | grep " update.sh")" != "" ]; do' >> /tmp/pak_update
83 #echo ' sleep 1' >> /tmp/pak_update
84 #echo 'done' >> /tmp/pak_update
85 #echo 'while [ "$(ps -A | grep " pakfire")" != "" ]; do' >> /tmp/pak_update
86 #echo ' sleep 1' >> /tmp/pak_update
87 #echo 'done' >> /tmp/pak_update
88 #echo '/opt/pakfire/pakfire update -y --force' >> /tmp/pak_update
89 #echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
90 #echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
91 #echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
92 #echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 "Upgrade finished. If you use a customized grub.cfg"' >> /tmp/pak_update
93 #echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 "Check it before reboot !!!"' >> /tmp/pak_update
94 #echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 " *** Please reboot... *** "' >> /tmp/pak_update
95 #echo 'touch /var/run/need_reboot ' >> /tmp/pak_update
96 #
97 #chmod +x /tmp/pak_update
98 #/tmp/pak_update &
99 #echo
100 #echo Please wait until pakfire has ended...
101 #echo
102
103 #
104 #Finish
105 /etc/init.d/fireinfo start
106 sendprofile
107 #Don't report the exitcode last command
108 exit 0