]> git.ipfire.org Git - ipfire-2.x.git/blob - config/rootfiles/core/174/update.sh
3f8263f2208d5b7ac7bd104653d7c6d73eae9dc8
[ipfire-2.x.git] / config / rootfiles / core / 174 / 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) 2023 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=174
28
29 # Remove old core updates from pakfire cache to save space...
30 for (( i=1; i<=$core; i++ )); do
31 rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
32 done
33
34 # Stop services
35 /etc/rc.d/init.d/squid stop
36
37 # Extract files
38 extract_files
39
40 # Remove files
41 rm -rfv \
42 /usr/bin/srptool \
43 /usr/lib/libbind9-9.16.37.so \
44 /usr/lib/libboost*.so.1.76.0 \
45 /usr/lib/libdns-9.16.37.so \
46 /usr/lib/libirs-9.16.37.so \
47 /usr/lib/libisc-9.16.37.so \
48 /usr/lib/libisccc-9.16.37.so \
49 /usr/lib/libisccfg-9.16.37.so \
50 /usr/lib/libns-9.16.37.so \
51 /usr/local/share/locale/de/LC_MESSAGES/elinks.mo
52
53 # update linker config
54 ldconfig
55
56 # Update Language cache
57 /usr/local/bin/update-lang-cache
58
59 # Filesytem cleanup
60 /usr/local/bin/filesystem-cleanup
61
62 # Start services
63 telinit u
64 if [ -f /var/ipfire/proxy/enable ]; then
65 /etc/init.d/squid start
66 fi
67
68 # Rebuild initial ramdisk to apply microcode updates
69 dracut --regenerate-all --force
70 case "$(uname -m)" in
71 aarch64)
72 mkimage -A arm64 -T ramdisk -C lzma -d /boot/initramfs-${KVER}-ipfire.img /boot/uInit-${KVER}-ipfire
73 # dont remove initramfs because grub need this to boot.
74 ;;
75 esac
76
77 # perl-TimeDate is now part of the core system, remove Pakfire metadata for it
78 if [ -e "/opt/pakfire/db/installed/meta-perl-TimeDate" ] && [ -e "/opt/pakfire/db/meta/meta-perl-TimeDate" ]; then
79 rm -vf \
80 /opt/pakfire/db/installed/meta-perl-TimeDate \
81 /opt/pakfire/db/meta/meta-perl-TimeDate \
82 /opt/pakfire/db/rootfiles/perl-TimeDate
83 fi
84
85 # This update needs a reboot...
86 touch /var/run/need_reboot
87
88 # Finish
89 /etc/init.d/fireinfo start
90 sendprofile
91
92 # Update grub config to display new core version
93 if [ -e /boot/grub/grub.cfg ]; then
94 grub-mkconfig -o /boot/grub/grub.cfg
95 fi
96
97 sync
98
99 # Don't report the exitcode last command
100 exit 0