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