]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - config/rootfiles/core/182/update.sh
core182: dont remove libs in update
[people/pmueller/ipfire-2.x.git] / config / rootfiles / core / 182 / update.sh
CommitLineData
1d552885
PM
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
27core=182
28
29# Remove old core updates from pakfire cache to save space...
30for (( i=1; i<=$core; i++ )); do
31 rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
32done
33
34# Stop services
54dbdf55 35/etc/rc.d/init.d/ipsec stop
d99c8a28 36/etc/rc.d/init.d/squid stop
fa92e618 37/etc/rc.d/init.d/unbound stop
20872140 38/etc/rc.d/init.d/sshd stop
1d552885 39
4bc2da43
AF
40KVER="xxxKVERxxx"
41
62f2f2ab
PM
42# Backup uEnv.txt if exist
43if [ -e /boot/uEnv.txt ]; then
44 cp -vf /boot/uEnv.txt /boot/uEnv.txt.org
45fi
46
1d552885
PM
47# Extract files
48extract_files
49
50# Remove files
307be8b0 51rm -rvf \
ad86d807
PM
52 /lib/firmware/cxgb4/t4fw-1.27.3* \
53 /lib/firmware/cxgb4/t5fw-1.27.3* \
54 /lib/firmware/cxgb4/t6fw-1.27.3* \
55 /lib/firmware/ctefx.bin \
56 /lib/firmware/ctspeq.bin \
57 /lib/firmware/ess \
9052b9f4 58 /lib/firmware/intel/ibt-* \
ad86d807 59 /lib/firmware/korg \
9052b9f4
PM
60 /lib/firmware/mediatek/BT_RAM_CODE_* \
61 /lib/firmware/nxp \
ad86d807
PM
62 /lib/firmware/sb16 \
63 /lib/firmware/yamaha \
0b329e97 64 /lib/udev/rules.d/64-xfs.rules \
837bbbf4 65 /usr/bin/gawk-5.2* \
71070690 66 /usr/lib/grub/{arm64-efi,i386-pc,riscv64-efi,x86_64-efi}/gmodule.pl
1d552885
PM
67
68# update linker config
69ldconfig
70
71# Update Language cache
72/usr/local/bin/update-lang-cache
73
74# Filesytem cleanup
75/usr/local/bin/filesystem-cleanup
76
20872140
PM
77# Apply local configuration to sshd_config
78/usr/local/bin/sshctrl
79
1d552885 80# Start services
fa92e618 81/etc/init.d/unbound start
20872140
PM
82if grep -q "ENABLE_SSH=on" /var/ipfire/remote/settings; then
83 /etc/init.d/sshd start
84fi
d99c8a28
PM
85if [ -f /var/ipfire/proxy/enable ]; then
86 /etc/init.d/squid start
87fi
54dbdf55
PM
88if grep -q "ENABLED=on" /var/ipfire/vpn/settings; then
89 /etc/rc.d/init.d/ipsec start
90fi
1d552885 91
7a1683e6
EK
92# Change deprecated option in tor configuration file if in usage
93if pgrep tor >/dev/null; then
94 sed -i 's/ExitNode /ExitNodes /g' /var/ipfire/tor/torrc
95 /usr/local/bin/torctrl restart >/dev/null
96else
97 sed -i 's/ExitNode /ExitNodes /g' /var/ipfire/tor/torrc
98fi
99
62f2f2ab
PM
100# Rebuild initial ramdisks
101dracut --regenerate-all --force
102KVER="xxxKVERxxx"
103case "$(uname -m)" in
104 aarch64)
105 mkimage -A arm64 -T ramdisk -C lzma -d /boot/initramfs-${KVER}-ipfire.img /boot/uInit-${KVER}-ipfire
106 # dont remove initramfs because grub need this to boot.
107 ;;
108esac
109
110# Call user update script (needed for some ARM boards)
111if [ -e /boot/pakfire-kernel-update ]; then
112 /boot/pakfire-kernel-update ${KVER}
113fi
114
1d552885 115# This update needs a reboot...
3bad7e44 116touch /var/run/need_reboot
1d552885
PM
117
118# Finish
119/etc/init.d/fireinfo start
120sendprofile
121
e59bd862 122# Grub version was updated, reinstall it
1d552885 123if [ -e /boot/grub/grub.cfg ]; then
e59bd862 124 /usr/bin/install-bootloader
1d552885
PM
125fi
126
127sync
128
129# Don't report the exitcode last command
130exit 0