]> git.ipfire.org Git - people/dweismueller/ipfire-2.x.git/blob - config/rootfiles/core/86/update.sh
c58780bce7c40570425936288cf7f46f76b1e7d1
[people/dweismueller/ipfire-2.x.git] / config / rootfiles / core / 86 / 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) 2014 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 function add_to_backup ()
28 {
29 # Add path to ROOTFILES but remove old entries to prevent double
30 # files in the tar
31 grep -v "^$1" /opt/pakfire/tmp/ROOTFILES > /opt/pakfire/tmp/ROOTFILES.tmp
32 mv /opt/pakfire/tmp/ROOTFILES.tmp /opt/pakfire/tmp/ROOTFILES
33 echo $1 >> /opt/pakfire/tmp/ROOTFILES
34 }
35
36 #
37 # Remove old core updates from pakfire cache to save space...
38 core=86
39 for (( i=1; i<=${core}; i++ ))
40 do
41 rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
42 done
43
44 #
45 # Do some sanity checks.
46 case $(uname -r) in
47 *-ipfire-versatile )
48 /usr/bin/logger -p syslog.emerg -t ipfire \
49 "core-update-${core}: ERROR cannot update. versatile support is dropped."
50 # Report no error to pakfire. So it does not try to install it again.
51 exit 0
52 ;;
53 *-ipfire* )
54 # Ok.
55 ;;
56 * )
57 /usr/bin/logger -p syslog.emerg -t ipfire \
58 "core-update-${core}: ERROR cannot update. No IPFire Kernel."
59 exit 1
60 ;;
61 esac
62
63
64 #
65 #
66 KVER="xxxKVERxxx"
67
68 #
69 # check if we the backup file already exist
70 if [ -e /var/ipfire/backup/core-upgrade${core}_${KVER}.tar.xz ]; then
71 echo Moving backup to backup-old ...
72 mv -f /var/ipfire/backup/core-upgrade${core}_${KVER}.tar.xz \
73 /var/ipfire/backup/core-upgrade${core}_${KVER}-old.tar.xz
74 fi
75 echo First we made a backup of all files that was inside of the
76 echo update archive. This may take a while ...
77 # Add some files that are not in the package to backup
78 add_to_backup lib/modules
79 add_to_backup boot
80
81 # Backup the files
82 tar cJvf /var/ipfire/backup/core-upgrade${core}_${KVER}.tar.xz \
83 -C / -T /opt/pakfire/tmp/ROOTFILES --exclude='#*' --exclude='/var/cache' > /dev/null 2>&1
84
85 # Check diskspace on root
86 ROOTSPACE=`df / -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1`
87
88 if [ $ROOTSPACE -lt 100000 ]; then
89 /usr/bin/logger -p syslog.emerg -t ipfire \
90 "core-update-${core}: ERROR cannot update because not enough free space on root."
91 exit 2
92 fi
93
94
95 echo
96 echo Update Kernel to $KVER ...
97 #
98 # Remove old kernel, configs, initrd, modules ...
99 #
100 rm -rf /boot/System.map-*
101 rm -rf /boot/config-*
102 rm -rf /boot/ipfirerd-*
103 rm -rf /boot/vmlinuz-*
104 rm -rf /boot/uImage-ipfire-*
105 rm -rf /boot/uInit-ipfire-*
106 rm -rf /lib/modules
107
108 case "$(uname -m)" in
109 i?86)
110 # Backup grub.conf
111 cp -vf /boot/grub/grub.conf /boot/grub-legacy.conf
112
113 # Remove all files that belong to GRUB-legacy
114 rm -rfv /boot/grub
115 ;;
116 esac
117 #
118 #Stop services
119 /etc/init.d/snort stop
120 /etc/init.d/squid stop
121 /etc/init.d/ipsec stop
122 /etc/init.d/apache stop
123
124 #
125 #Extract files
126 tar xavf /opt/pakfire/tmp/files* --no-overwrite-dir -p --numeric-owner -C /
127
128 #
129 #restart init because glibc was updated.
130 telinit i
131
132 # Check diskspace on boot
133 BOOTSPACE=`df /boot -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1`
134
135 if [ $BOOTSPACE -lt 1000 ]; then
136 case $(uname -r) in
137 *-ipfire-kirkwood )
138 # Special handling for old kirkwood images.
139 # (install only kirkwood kernel)
140 rm -rf /boot/*
141 tar xavf /opt/pakfire/tmp/files* --no-overwrite-dir -p \
142 --numeric-owner -C / --wildcards 'boot/*-kirkwood*'
143 ;;
144 * )
145 /usr/bin/logger -p syslog.emerg -t ipfire \
146 "core-update-${core}: FATAL-ERROR space run out on boot. System is not bootable..."
147 /etc/init.d/apache start
148 exit 4
149 ;;
150 esac
151 fi
152
153 # Update Language cache
154 perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
155
156 # Add nobody to group dialout
157 usermod -a -G dialout nobody
158
159 #
160 # Start services
161 #
162 /etc/init.d/apache start
163 /etc/init.d/squid start
164 /etc/init.d/snort start
165 if [ `grep "ENABLED=on" /var/ipfire/vpn/settings` ]; then
166 /etc/init.d/ipsec start
167 fi
168
169 case "$(uname -m)" in
170 i?86)
171 #
172 # Update to GRUB2
173 #
174 echo
175 echo Update grub configuration ...
176 if grep -qE "^serial" /boot/grub-legacy.conf; then
177 sed -i /etc/default/grub \
178 -e "s| panic=10 | console=ttyS0,115200n8 panic=10 |g"
179 echo "GRUB_TERMINAL=\"serial\"" >> /etc/default/grub
180 echo "GRUB_SERIAL_COMMAND=\"serial --unit=0 --speed=115200\"" >> /etc/default/grub
181 fi
182 grub-mkconfig -o /boot/grub/grub.cfg
183
184 ROOT=$(mount | grep " / " | cut -d" " -f1)
185 ROOT=${ROOT::-1}
186
187 if ! grub-install --no-floppy --recheck "${ROOT}"; then
188 if ! grub-install --no-floppy --recheck --force "${ROOT}"; then
189 logger -p syslog.emerg -t ipfire \
190 "Could not update the bootloader!"
191 fi
192 fi
193 ;;
194 esac
195
196 # Force (re)install pae kernel if pae is supported
197 rm -rf /opt/pakfire/db/*/meta-linux-pae
198 if [ ! "$(grep "^flags.* pae " /proc/cpuinfo)" == "" ]; then
199 ROOTSPACE=`df / -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1`
200 BOOTSPACE=`df /boot -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1`
201 if [ $BOOTSPACE -lt 12000 -o $ROOTSPACE -lt 90000 ]; then
202 /usr/bin/logger -p syslog.emerg -t ipfire \
203 "core-update-${core}: WARNING not enough space for pae kernel."
204 else
205 echo "Name: linux-pae" > /opt/pakfire/db/installed/meta-linux-pae
206 echo "ProgVersion: 0" >> /opt/pakfire/db/installed/meta-linux-pae
207 echo "Release: 0" >> /opt/pakfire/db/installed/meta-linux-pae
208 echo "Name: linux-pae" > /opt/pakfire/db/meta/meta-linux-pae
209 echo "ProgVersion: 0" >> /opt/pakfire/db/meta/meta-linux-pae
210 echo "Release: 0" >> /opt/pakfire/db/meta/meta-linux-pae
211 fi
212 fi
213
214 # Force reinstall xen kernel if it was installed
215 if [ -e "/opt/pakfire/db/installed/meta-linux-xen" ]; then
216 echo "Name: linux-xen" > /opt/pakfire/db/installed/meta-linux-xen
217 echo "ProgVersion: 0" >> /opt/pakfire/db/installed/meta-linux-xen
218 echo "Release: 0" >> /opt/pakfire/db/installed/meta-linux-xen
219 echo "Name: linux-xen" > /opt/pakfire/db/meta/meta-linux-xen
220 echo "ProgVersion: 0" >> /opt/pakfire/db/meta/meta-linux-xen
221 echo "Release: 0" >> /opt/pakfire/db/meta/meta-linux-xen
222 # Add xvc0 to /etc/securetty
223 echo "xvc0" >> /etc/securetty
224 fi
225
226 #
227 # After pakfire has ended run it again and update the lists and do upgrade
228 #
229 echo '#!/bin/bash' > /tmp/pak_update
230 echo 'while [ "$(ps -A | grep " update.sh")" != "" ]; do' >> /tmp/pak_update
231 echo ' sleep 1' >> /tmp/pak_update
232 echo 'done' >> /tmp/pak_update
233 echo 'while [ "$(ps -A | grep " pakfire")" != "" ]; do' >> /tmp/pak_update
234 echo ' sleep 1' >> /tmp/pak_update
235 echo 'done' >> /tmp/pak_update
236 echo '/opt/pakfire/pakfire update -y --force' >> /tmp/pak_update
237 echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
238 echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
239 echo '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
240 echo '/usr/bin/logger -p syslog.emerg -t ipfire "Core-upgrade finished. If you use a customized grub.cfg"' >> /tmp/pak_update
241 echo '/usr/bin/logger -p syslog.emerg -t ipfire "Check it before reboot !!!"' >> /tmp/pak_update
242 echo '/usr/bin/logger -p syslog.emerg -t ipfire " *** Please reboot... *** "' >> /tmp/pak_update
243 echo 'touch /var/run/need_reboot ' >> /tmp/pak_update
244 #
245 killall -KILL pak_update
246 chmod +x /tmp/pak_update
247 /tmp/pak_update &
248
249 sync
250
251 #
252 #Finish
253 (
254 /etc/init.d/fireinfo start
255 sendprofile
256 ) >/dev/null 2>&1 &
257
258 # Update Package list for addon installation
259 /opt/pakfire/pakfire update -y --force
260
261 echo
262 echo Please wait until pakfire has ended...
263 echo
264
265 # Don't report the exitcode last command
266 exit 0