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