]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - config/rootfiles/core/next/update.sh
Merge branch 'master' into next
[people/pmueller/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 # Unpack the updated files
77 #
78 echo
79 echo Unpack the updated files ...
80 #
81 tar xvf /opt/pakfire/tmp/files --preserve --numeric-owner -C / \
82 --no-overwrite-dir
83
84 #
85 # Enable ralink rt73 hardware encryption again
86 rm -f /etc/modprobe.d/ralink_wireless
87
88 #
89 # Start services
90 #
91 /etc/init.d/squid start
92 /etc/init.d/snort start
93 if [ `grep "ENABLED=on" /var/ipfire/vpn/settings` ]; then
94 /etc/init.d/ipsec start
95 fi
96
97 #
98 # Modify grub.conf
99 #
100 echo
101 echo Update grub configuration ...
102 ROOT=`mount | grep " / " | cut -d" " -f1`
103 if [ ! -z $ROOT ]; then
104 ROOTUUID=`blkid -c /dev/null -sUUID $ROOT | cut -d'"' -f2`
105 fi
106 if [ ! -z $ROOTUUID ]; then
107 sed -i "s|ROOT|UUID=$ROOTUUID|g" /boot/grub/grub.conf
108 else
109 sed -i "s|ROOT|$ROOT|g" /boot/grub/grub.conf
110 fi
111 sed -i "s|KVER|$KVER|g" /boot/grub/grub.conf
112 sed -i "s|MOUNT|$MOUNT|g" /boot/grub/grub.conf
113
114 if [ "$(grep "^serial" /boot/grub/grub.conf.org)" == "" ]; then
115 echo "grub use default console ..."
116 else
117 echo "grub use serial console ..."
118 sed -i -e "s|splashimage|#splashimage|g" /boot/grub/grub.conf
119 sed -i -e "s|#serial|serial|g" /boot/grub/grub.conf
120 sed -i -e "s|#terminal|terminal|g" /boot/grub/grub.conf
121 sed -i -e "s| panic=10 | console=ttyS0,38400n8 panic=10 |g" /boot/grub/grub.conf
122 fi
123 #
124 # ReInstall grub
125 #
126 grub-install --no-floppy ${ROOT::`expr length $ROOT`-1} --recheck
127 #
128 # Rebuild Language
129 #
130 perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
131 #
132 # Delete old lm-sensor modullist to force search at next boot
133 #
134 rm -rf /etc/sysconfig/lm_sensors
135 ##
136 ## Change version of Pakfire.conf
137 ##
138 #OLDVERSION=`grep "version = " /opt/pakfire/etc/pakfire.conf | cut -d'"' -f2`
139 #NEWVERSION="2.9"
140 #sed -i "s|$OLDVERSION|$NEWVERSION|g" /opt/pakfire/etc/pakfire.conf
141 ##
142 ## After pakfire has ended run it again and update the lists and do upgrade
143 ##
144 #echo '#!/bin/bash' > /tmp/pak_update
145 #echo 'while [ "$(ps -A | grep " update.sh")" != "" ]; do' >> /tmp/pak_update
146 #echo ' sleep 1' >> /tmp/pak_update
147 #echo 'done' >> /tmp/pak_update
148 #echo 'while [ "$(ps -A | grep " pakfire")" != "" ]; do' >> /tmp/pak_update
149 #echo ' sleep 1' >> /tmp/pak_update
150 #echo 'done' >> /tmp/pak_update
151 #echo '/opt/pakfire/pakfire update -y --force' >> /tmp/pak_update
152 #echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
153 #echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
154 #echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
155 #echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 "Upgrade finished. If you use a customized grub.cfg"' >> /tmp/pak_update
156 #echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 "Check it before reboot !!!"' >> /tmp/pak_update
157 #echo '/usr/bin/logger -p syslog.emerg -t core-upgrade-44 " *** Please reboot... *** "' >> /tmp/pak_update
158 #echo 'touch /var/run/need_reboot ' >> /tmp/pak_update
159 #
160 #chmod +x /tmp/pak_update
161 #/tmp/pak_update &
162 #echo
163 #echo Please wait until pakfire has ended...
164 #echo
165 /usr/bin/logger -p syslog.emerg -t core-upgrade-next "Upgrade finished. If you use a customized grub.cfg"
166 /usr/bin/logger -p syslog.emerg -t core-upgrade-next "Check it before reboot !!!"
167 /usr/bin/logger -p syslog.emerg -t core-upgrade-next " *** Please reboot... *** "