]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - config/rootfiles/core/next/update.sh
3632ff2380d45593f009a290562a466b4fce3d14
[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 KVER="xxxKVERxxx"
28 MOUNT=`grep "kernel" /boot/grub/grub.conf | tail -n 1`
29 # Nur den letzten Parameter verwenden
30 echo $MOUNT > /dev/null
31 MOUNT=$_
32 if [ ! $MOUNT == "rw" ]; then
33 MOUNT="ro"
34 fi
35
36
37 #
38 # check if we the backup file already exist
39 if [ -e /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 ]; then
40 echo Moving backup to backup-old ...
41 mv -f /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \
42 /var/ipfire/backup/core-upgrade_$KVER-old.tar.bz2
43 fi
44 echo First we made a backup of all files that was inside of the
45 echo update archive. This may take a while ...
46 # Add some files that are not in the package to backup
47 echo lib/modules >> /opt/pakfire/tmp/ROOTFILES
48 echo boot >> /opt/pakfire/tmp/ROOTFILES
49
50 # Backup the files
51 tar cjvf /var/ipfire/backup/core-upgrade_$KVER.tar.bz2 \
52 -C / -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' > /dev/null 2>&1
53
54 echo
55 echo Update Kernel to $KVER ...
56 # Remove old kernel, configs, initrd, modules ...
57 #
58 rm -rf /boot/System.map-*
59 rm -rf /boot/config-*
60 rm -rf /boot/ipfirerd-*
61 rm -rf /boot/vmlinuz-*
62 rm -rf /lib/modules/*-ipfire
63 #
64 # Backup grub.conf
65 #
66 cp -vf /boot/grub/grub.conf /boot/grub/grub.conf.org
67
68 #
69 # Stop services to save memory
70 #
71 /etc/init.d/snort stop
72 /etc/init.d/squid stop
73 /etc/init.d/ipsec stop
74
75 #
76 # Remove old strongswan libs
77 rm -rf /usr/lib/libcharon.so
78 rm -rf /usr/lib/libcharon.so.0
79 rm -rf /usr/lib/libcharon.so.0.0.0
80 rm -rf /usr/lib/libhydra.so
81 rm -rf /usr/lib/libhydra.so.0
82 rm -rf /usr/lib/libhydra.so.0.0.0
83 rm -rf /usr/lib/libstrongswan.so
84 rm -rf /usr/lib/libstrongswan.so.0
85 rm -rf /usr/lib/libstrongswan.so.0.0.0
86 rm -rf /usr/libexec/ipsec/plugins
87
88 #
89 # Unpack the updated files
90 #
91 echo
92 echo Unpack the updated files ...
93 #
94 tar xvf /opt/pakfire/tmp/files --preserve --numeric-owner -C / \
95 --no-overwrite-dir
96
97 #
98 # Enable ralink rt73 hardware encryption again
99 rm -f /etc/modprobe.d/ralink_wireless
100
101 #
102 # Start services
103 #
104 /etc/init.d/squid start
105 /etc/init.d/snort start
106 if [ `grep "ENABLED=on" /var/ipfire/vpn/settings` ]; then
107 /etc/init.d/ipsec start
108 fi
109
110 #
111 # Modify grub.conf
112 #
113 echo
114 echo Update grub configuration ...
115 ROOT=`mount | grep " / " | cut -d" " -f1`
116 if [ ! -z $ROOT ]; then
117 ROOTUUID=`blkid -c /dev/null -sUUID $ROOT | cut -d'"' -f2`
118 fi
119 if [ ! -z $ROOTUUID ]; then
120 sed -i "s|ROOT|UUID=$ROOTUUID|g" /boot/grub/grub.conf
121 else
122 sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
123 fi
124 sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
125 sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
126
127 if [ "$(grep "^serial" /boot/grub/grub.conf.org)" == "" ]; then
128 echo "grub use default console ..."
129 else
130 echo "grub use serial console ..."
131 sed -i -e "s|splashimage|#splashimage|g" /boot/grub/grub.conf
132 sed -i -e "s|#serial|serial|g" /boot/grub/grub.conf
133 sed -i -e "s|#terminal|terminal|g" /boot/grub/grub.conf
134 sed -i -e "s| panic=10 | console=ttyS0,38400n8 panic=10 |g" /boot/grub/grub.conf
135 fi
136 #
137 # ReInstall grub
138 #
139 grub-install --no-floppy ${ROOT::`expr length $ROOT`-1} --recheck
140 #
141 # Rebuild Language
142 #
143 perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
144 #
145 # Delete old lm-sensor modullist to force search at next boot
146 #
147 rm -rf /etc/sysconfig/lm_sensors
148 ##
149 ## Change version of Pakfire.conf
150 ##
151 #OLDVERSION=`grep "version = " /opt/pakfire/etc/pakfire.conf | cut -d'"' -f2`
152 #NEWVERSION="2.9"
153 #sed -i "s|$OLDVERSION|$NEWVERSION|g" /opt/pakfire/etc/pakfire.conf
154 ##
155 ## After pakfire has ended run it again and update the lists and do upgrade
156 ##
157 #echo '#!/bin/bash' > /tmp/pak_update
158 #echo 'while [ "$(ps -A | grep " update.sh")" != "" ]; do' >> /tmp/pak_update
159 #echo ' sleep 1' >> /tmp/pak_update
160 #echo 'done' >> /tmp/pak_update
161 #echo 'while [ "$(ps -A | grep " pakfire")" != "" ]; do' >> /tmp/pak_update
162 #echo ' sleep 1' >> /tmp/pak_update
163 #echo 'done' >> /tmp/pak_update
164 #echo '/opt/pakfire/pakfire update -y --force' >> /tmp/pak_update
165 #echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
166 #echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
167 #echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
168 #echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 "Upgrade finished. If you use a customized grub.cfg"' >> /tmp/pak_update
169 #echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 "Check it before reboot !!!"' >> /tmp/pak_update
170 #echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 " *** Please reboot... *** "' >> /tmp/pak_update
171 #echo 'touch /var/run/need_reboot ' >> /tmp/pak_update
172 #
173 #chmod +x /tmp/pak_update
174 #/tmp/pak_update &
175 #echo
176 #echo Please wait until pakfire has ended...
177 #echo
178 /usr/bin/logger -p syslog.emerg -t core-upgrade-next "Upgrade finished. If you use a customized grub.cfg"
179 /usr/bin/logger -p syslog.emerg -t core-upgrade-next "Check it before reboot !!!"
180 /usr/bin/logger -p syslog.emerg -t core-upgrade-next " *** Please reboot... *** "