]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - config/rootfiles/core/170/update.sh
Core Update 170: Delete orphaned comment from update.sh
[people/pmueller/ipfire-2.x.git] / config / rootfiles / core / 170 / 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) 2022 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 core=170
28
29 exit_with_error() {
30 # Set last succesfull installed core.
31 echo $(($core-1)) > /opt/pakfire/db/core/mine
32 # force fsck at next boot, this may fix free space on xfs
33 touch /forcefsck
34 # don't start pakfire again at error
35 killall -KILL pak_update
36 /usr/bin/logger -p syslog.emerg -t ipfire \
37 "core-update-${core}: $1"
38 exit $2
39 }
40
41 # Remove old core updates from pakfire cache to save space...
42 for (( i=1; i<=$core; i++ )); do
43 rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
44 done
45
46 # Stop services
47 /etc/rc.d/init.d/unbound stop
48 /etc/rc.d/init.d/suricata stop
49
50 KVER="xxxKVERxxx"
51
52 # Backup uEnv.txt if exist
53 if [ -e /boot/uEnv.txt ]; then
54 cp -vf /boot/uEnv.txt /boot/uEnv.txt.org
55 fi
56
57 # Do some sanity checks prior to the kernel update
58 case $(uname -r) in
59 *-ipfire*)
60 # Ok.
61 ;;
62 *)
63 exit_with_error "ERROR cannot update. No IPFire Kernel." 1
64 ;;
65 esac
66
67 # Check diskspace on root
68 ROOTSPACE=`df / -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1`
69
70 if [ $ROOTSPACE -lt 100000 ]; then
71 exit_with_error "ERROR cannot update because not enough free space on root." 2
72 exit 2
73 fi
74
75 # Remove the old kernel
76 rm -rvf \
77 /boot/System.map-* \
78 /boot/config-* \
79 /boot/ipfirerd-* \
80 /boot/initramfs-* \
81 /boot/vmlinuz-* \
82 /boot/uImage-* \
83 /boot/zImage-* \
84 /boot/uInit-* \
85 /boot/dtb-* \
86 /lib/modules
87
88 # Remove files
89 rm -rvf \
90 /lib/ld-2.* \
91 /lib/libanl-2.* \
92 /lib/libc-2.* \
93 /lib/libdl-2.* \
94 /lib/libm-2.* \
95 /lib/libmvec-2.* \
96 /lib/libnsl-2.* \
97 /lib/libnss_compat-2.* \
98 /lib/libnss_db-2.* \
99 /lib/libnss_dns-2.* \
100 /lib/libnss_files-2.* \
101 /lib/libnss_hesiod-2.* \
102 /lib/libntfs-3g.so.88* \
103 /lib/libpsx.so.2 \
104 /lib/libpthread-2.* \
105 /lib/libresolv-2.* \
106 /lib/librt-2.* \
107 /lib/libthread_db-1.0.so \
108 /lib/libutil-2.* \
109 /sbin/ifcfg \
110 /sbin/routef \
111 /sbin/rtpr \
112 /usr/bin/screen-4.* \
113 /usr/bin/x86_64 \
114 /usr/lib/libbfd-2.36.* \
115 /usr/lib/libbind9-9.16.2* \
116 /usr/lib/libbind9-9.16.30.so \
117 /usr/lib/libdnet* \
118 /usr/lib/libdns-9.16.30.so \
119 /usr/lib/libirs-9.16.2* \
120 /usr/lib/libirs-9.16.30.so \
121 /usr/lib/libisc-9.16.2* \
122 /usr/lib/libisc-9.16.30.so \
123 /usr/lib/libisccc-9.16.2* \
124 /usr/lib/libisccc-9.16.30.so \
125 /usr/lib/libisccfg-9.16.2* \
126 /usr/lib/libisccfg-9.16.30.so \
127 /usr/lib/libldap-* \
128 /usr/lib/libldap_r-* \
129 /usr/lib/libns-9.16.2* \
130 /usr/lib/libns-9.16.30.so \
131 /usr/lib/libopenjp2.so.2.3.* \
132 /usr/lib/libpoppler.so.11* \
133 /usr/lib/libunbound.so.8.1.17 \
134 /usr/lib/perl5/site_perl/5.32.1/Bundle/LWP.pm \
135 /usr/lib/perl5/site_perl/5.32.1/File/Listing.pm \
136 /usr/lib/perl5/site_perl/5.32.1/HTML/Form.pm \
137 /usr/lib/perl5/site_perl/5.32.1/HTTP/Cookies \
138 /usr/lib/perl5/site_perl/5.32.1/HTTP/Negotiate.pm \
139 /usr/lib/perl5/site_perl/5.32.1/*-linux-thread-multi/auto/Unix/Syslog/autosplit.ix \
140 /usr/lib/perl5/site_perl/5.32.1/*-linux-thread-multi/qd.pl \
141 /usr/lib/perl5/site_perl/5.32.1/LWP/media.types \
142 /usr/lib/perl5/site_perl/5.32.1/LWP/MediaTypes.pm \
143 /usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/GHTTP.pm \
144 /usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/http10.pm \
145 /usr/lib/perl5/site_perl/5.32.1/LWP/Protocol/https10.pm \
146 /usr/lib/perl5/site_perl/5.32.1/WWW \
147 /usr/sbin/ovpn-ccd-convert \
148 /usr/share/xt_geoip
149
150 # Extract files
151 extract_files
152
153 # update linker config
154 ldconfig
155
156 # Update Language cache
157 /usr/local/bin/update-lang-cache
158
159 # Filesytem cleanup
160 /usr/local/bin/filesystem-cleanup
161
162 # Create directory for IPBlocklist feature
163 mkdir -pv /var/lib/ipblocklist
164 chown nobody:nobody /var/lib/ipblocklist
165
166 # Rebuild fcrontab from scratch
167 /usr/bin/fcrontab -z
168
169 # Update collectd.conf
170 sed -i /etc/collectd.conf \
171 -e "/LoadPlugin entropy/d"
172
173 # Stop collectd Sevice
174 /etc/init.d/collectd stop
175
176 # Cleanup old collectd statistics...
177 rm -rvf /var/log/rrd/collectd/localhost/processes-mysqld \
178 /var/log/rrd/collectd/localhost/processes-snort \
179 /var/log/rrd/collectd/localhost/processes-rtorrent \
180 /var/log/rrd/collectd/localhost/processes-asterisk \
181 /var/log/rrd/collectd/localhost/processes-java \
182 /var/log/rrd/collectd/localhost/processes-spamd \
183 /var/log/rrd/collectd/localhost/entropy
184
185 # Start collectd
186 /etc/init.d/collectd start
187
188 # Start services
189 /etc/rc.d/init.d/unbound start
190 /etc/rc.d/init.d/suricata start
191
192 # Harden mount options of /boot
193 sed -e "s@[[:space:]]*\/boot[[:space:]]*auto[[:space:]]*defaults[[:space:]]*@ \/boot auto defaults,nodev,noexec,nosuid @g" /etc/fstab
194
195 # Regenerate all initrds
196 dracut --regenerate-all --force
197 case "$(uname -m)" in
198 armv*)
199 mkimage -A arm -T ramdisk -C lzma -d /boot/initramfs-${KVER}-ipfire.img /boot/uInit-${KVER}-ipfire
200 rm /boot/initramfs-${KVER}-ipfire.img
201 ;;
202 aarch64)
203 mkimage -A arm64 -T ramdisk -C lzma -d /boot/initramfs-${KVER}-ipfire.img /boot/uInit-${KVER}-ipfire
204 # dont remove initramfs because grub need this to boot.
205 ;;
206 esac
207
208 # This update needs a reboot...
209 touch /var/run/need_reboot
210
211 # Finish
212 /etc/init.d/fireinfo start
213 sendprofile
214
215 # remove lm_sensor config after collectd was started
216 # to reserch sensors at next boot with updated kernel
217 rm -f /etc/sysconfig/lm_sensors
218
219 # Upadate Kernel version in uEnv.txt
220 if [ -e /boot/uEnv.txt ]; then
221 sed -i -e "s/KVER=.*/KVER=${KVER}/g" /boot/uEnv.txt
222 fi
223
224 # Call user update script (needed for some ARM boards)
225 if [ -e /boot/pakfire-kernel-update ]; then
226 /boot/pakfire-kernel-update ${KVER}
227 fi
228
229 # Update grub config to display new core version
230 if [ -e /boot/grub/grub.cfg ]; then
231 grub-mkconfig -o /boot/grub/grub.cfg
232 fi
233
234 sync
235
236 # Don't report the exitcode last command
237 exit 0