]> git.ipfire.org Git - ipfire-2.x.git/blob - config/rootfiles/core/86/update.sh
6d1202300a8ddd687727c9bc3adb8461b690fbb7
[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/initramfs-*
104 rm -rf /boot/vmlinuz-*
105 rm -rf /boot/uImage-ipfire-*
106 rm -rf /boot/uInit-ipfire-*
107 rm -rf /lib/modules
108
109 case "$(uname -m)" in
110 i?86)
111 # Backup grub.conf
112 cp -vf /boot/grub/grub.conf /boot/grub-legacy.conf
113
114 # Remove all files that belong to GRUB-legacy
115 rm -rfv /boot/grub
116 ;;
117 esac
118 #
119 #Stop services
120 /etc/init.d/snort stop
121 /etc/init.d/squid stop
122 /etc/init.d/ipsec stop
123 /etc/init.d/apache stop
124
125 #
126 #Extract files
127 tar xavf /opt/pakfire/tmp/files* --no-overwrite-dir -p --numeric-owner -C /
128
129 #
130 #restart init because glibc was updated.
131 telinit i
132
133 # Check diskspace on boot
134 BOOTSPACE=`df /boot -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1`
135
136 if [ $BOOTSPACE -lt 1000 ]; then
137 case $(uname -r) in
138 *-ipfire-kirkwood )
139 # Special handling for old kirkwood images.
140 # (install only kirkwood kernel)
141 rm -rf /boot/*
142 tar xavf /opt/pakfire/tmp/files* --no-overwrite-dir -p \
143 --numeric-owner -C / --wildcards 'boot/*-kirkwood*'
144 ;;
145 * )
146 /usr/bin/logger -p syslog.emerg -t ipfire \
147 "core-update-${core}: FATAL-ERROR space run out on boot. System is not bootable..."
148 /etc/init.d/apache start
149 exit 4
150 ;;
151 esac
152 fi
153
154 # Update Language cache
155 perl -e "require '/var/ipfire/lang.pl'; &Lang::BuildCacheLang"
156
157 # Add nobody to group dialout
158 usermod -a -G dialout nobody
159
160 #
161 # Start services
162 #
163 /etc/init.d/apache start
164 /etc/init.d/squid start
165 /etc/init.d/snort start
166 if [ `grep "ENABLED=on" /var/ipfire/vpn/settings` ]; then
167 /etc/init.d/ipsec start
168 fi
169
170 case "$(uname -m)" in
171 i?86)
172 #
173 # Update to GRUB2
174 #
175 echo
176 echo Update grub configuration ...
177 if grep -qE "^serial" /boot/grub-legacy.conf; then
178 sed -i /etc/default/grub \
179 -e "s| panic=10 | console=ttyS0,115200n8 panic=10 |g"
180 echo "GRUB_TERMINAL=\"serial\"" >> /etc/default/grub
181 echo "GRUB_SERIAL_COMMAND=\"serial --unit=0 --speed=115200\"" >> /etc/default/grub
182 fi
183 grub-mkconfig -o /boot/grub/grub.cfg
184
185 ROOT=$(mount | grep " / " | cut -d" " -f1)
186 ROOT=${ROOT::-1}
187
188 if ! grub-install --no-floppy --recheck "${ROOT}"; then
189 if ! grub-install --no-floppy --recheck --force "${ROOT}"; then
190 logger -p syslog.emerg -t ipfire \
191 "Could not update the bootloader!"
192 fi
193 fi
194 ;;
195 esac
196
197 # Force (re)install pae kernel if pae is supported
198 rm -rf /opt/pakfire/db/*/meta-linux-pae
199 if [ ! "$(grep "^flags.* pae " /proc/cpuinfo)" == "" ]; then
200 ROOTSPACE=`df / -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1`
201 BOOTSPACE=`df /boot -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1`
202 if [ $BOOTSPACE -lt 12000 -o $ROOTSPACE -lt 90000 ]; then
203 /usr/bin/logger -p syslog.emerg -t ipfire \
204 "core-update-${core}: WARNING not enough space for pae kernel."
205 else
206 echo "Name: linux-pae" > /opt/pakfire/db/installed/meta-linux-pae
207 echo "ProgVersion: 0" >> /opt/pakfire/db/installed/meta-linux-pae
208 echo "Release: 0" >> /opt/pakfire/db/installed/meta-linux-pae
209 echo "Name: linux-pae" > /opt/pakfire/db/meta/meta-linux-pae
210 echo "ProgVersion: 0" >> /opt/pakfire/db/meta/meta-linux-pae
211 echo "Release: 0" >> /opt/pakfire/db/meta/meta-linux-pae
212 fi
213 fi
214
215 # Force reinstall xen kernel if it was installed
216 if [ -e "/opt/pakfire/db/installed/meta-linux-xen" ]; then
217 echo "Name: linux-xen" > /opt/pakfire/db/installed/meta-linux-xen
218 echo "ProgVersion: 0" >> /opt/pakfire/db/installed/meta-linux-xen
219 echo "Release: 0" >> /opt/pakfire/db/installed/meta-linux-xen
220 echo "Name: linux-xen" > /opt/pakfire/db/meta/meta-linux-xen
221 echo "ProgVersion: 0" >> /opt/pakfire/db/meta/meta-linux-xen
222 echo "Release: 0" >> /opt/pakfire/db/meta/meta-linux-xen
223 # Add xvc0 to /etc/securetty
224 echo "xvc0" >> /etc/securetty
225 fi
226
227 #
228 # After pakfire has ended run it again and update the lists and do upgrade
229 #
230 echo '#!/bin/bash' > /tmp/pak_update
231 echo 'while [ "$(ps -A | grep " update.sh")" != "" ]; do' >> /tmp/pak_update
232 echo ' sleep 1' >> /tmp/pak_update
233 echo 'done' >> /tmp/pak_update
234 echo 'while [ "$(ps -A | grep " pakfire")" != "" ]; do' >> /tmp/pak_update
235 echo ' sleep 1' >> /tmp/pak_update
236 echo 'done' >> /tmp/pak_update
237 echo '/opt/pakfire/pakfire update -y --force' >> /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 '/opt/pakfire/pakfire upgrade -y' >> /tmp/pak_update
241 echo '/usr/bin/logger -p syslog.emerg -t ipfire "Core-upgrade finished. If you use a customized grub.cfg"' >> /tmp/pak_update
242 echo '/usr/bin/logger -p syslog.emerg -t ipfire "Check it before reboot !!!"' >> /tmp/pak_update
243 echo '/usr/bin/logger -p syslog.emerg -t ipfire " *** Please reboot... *** "' >> /tmp/pak_update
244 echo 'touch /var/run/need_reboot ' >> /tmp/pak_update
245 #
246 killall -KILL pak_update
247 chmod +x /tmp/pak_update
248 /tmp/pak_update &
249
250 sync
251
252 #
253 #Finish
254 (
255 /etc/init.d/fireinfo start
256 sendprofile
257 ) >/dev/null 2>&1 &
258
259 # Update Package list for addon installation
260 /opt/pakfire/pakfire update -y --force
261
262 echo
263 echo Please wait until pakfire has ended...
264 echo
265
266 # Don't report the exitcode last command
267 exit 0