]> git.ipfire.org Git - ipfire-2.x.git/blame - config/rootfiles/core/177/update.sh
squid: Update to 6.1
[ipfire-2.x.git] / config / rootfiles / core / 177 / update.sh
CommitLineData
13183b06
MT
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
38430234 27core=177
13183b06 28
97b155a1
PM
29exit_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
13183b06
MT
42# Remove old core updates from pakfire cache to save space...
43for (( i=1; i<=$core; i++ )); do
44 rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
45done
46
47# Stop services
48
97b155a1
PM
49KVER="xxxKVERxxx"
50
51# Backup uEnv.txt if exist
52if [ -e /boot/uEnv.txt ]; then
53 cp -vf /boot/uEnv.txt /boot/uEnv.txt.org
54fi
55
56# Do some sanity checks prior to the kernel update
57case $(uname -r) in
58 *-ipfire*)
59 # Ok.
60 ;;
61 *)
62 exit_with_error "ERROR cannot update. No IPFire Kernel." 1
63 ;;
64esac
65
66# Check diskspace on root
67ROOTSPACE=$( df / -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1 )
68
69if [ $ROOTSPACE -lt 100000 ]; then
70 exit_with_error "ERROR cannot update because not enough free space on root." 2
71 exit 2
72fi
73
74# Remove the old kernel
75rm -rvf \
76 /boot/System.map-* \
77 /boot/config-* \
78 /boot/ipfirerd-* \
79 /boot/initramfs-* \
80 /boot/vmlinuz-* \
81 /boot/uImage-* \
82 /boot/zImage-* \
83 /boot/uInit-* \
84 /boot/dtb-* \
85 /lib/modules
86
8e82fd21
PM
87# Remove dropped squidclamav add-on, if installed
88if [ -e "/opt/pakfire/db/installed/meta-squidclamav" ]; then
89 stop_service "squidclamav"
90 for i in $(</opt/pakfire/db/rootfiles/squidclamav); do
91 rm -rfv "/${i}"
92 done
93fi
94rm -f \
95 /opt/pakfire/db/installed/meta-squidclamav \
96 /opt/pakfire/db/meta/meta-squidclamav \
97 /opt/pakfire/db/rootfiles/squidclamav
98
13183b06
MT
99# Extract files
100extract_files
101
a8c72d6f 102# Remove files
5ea68607
PM
103rm -rvf \
104 /lib/firmware/cxgb4/t4fw-1.27.1* \
105 /lib/firmware/cxgb4/t5fw-1.27.1* \
106 /lib/firmware/cxgb4/t6fw-1.27.1* \
107 /lib/firmware/intel/ice/ddp-comms/ice_comms-1.3.3* \
108 /lib/firmware/intel/ice/ddp-wireless_edge/ice_wireless_edge-1.3.7*
a8c72d6f 109
13183b06
MT
110# update linker config
111ldconfig
112
113# Update Language cache
114/usr/local/bin/update-lang-cache
115
116# Filesytem cleanup
117/usr/local/bin/filesystem-cleanup
118
119# Start services
8ebb8091 120/etc/init.d/ntp restart
1842f3dc
PM
121if [ -f /var/ipfire/proxy/enable ]; then
122 /etc/init.d/squid restart
123fi
a71450b6 124
97b155a1 125# Rebuild initial ramdisks
ee947634
PM
126dracut --regenerate-all --force
127KVER="xxxKVERxxx"
128case "$(uname -m)" in
129 aarch64)
130 mkimage -A arm64 -T ramdisk -C lzma -d /boot/initramfs-${KVER}-ipfire.img /boot/uInit-${KVER}-ipfire
131 # dont remove initramfs because grub need this to boot.
132 ;;
133esac
134
97b155a1
PM
135# remove lm_sensor config after collectd was started
136# to re-search sensors at next boot with updated kernel
137rm -f /etc/sysconfig/lm_sensors
138
139# Upadate Kernel version in uEnv.txt
140if [ -e /boot/uEnv.txt ]; then
141 sed -i -e "s/KVER=.*/KVER=${KVER}/g" /boot/uEnv.txt
142fi
143
144# Call user update script (needed for some ARM boards)
145if [ -e /boot/pakfire-kernel-update ]; then
146 /boot/pakfire-kernel-update ${KVER}
147fi
148
13183b06 149# This update needs a reboot...
5ea68607 150touch /var/run/need_reboot
13183b06
MT
151
152# Finish
153/etc/init.d/fireinfo start
154sendprofile
155
156# Update grub config to display new core version
157if [ -e /boot/grub/grub.cfg ]; then
158 grub-mkconfig -o /boot/grub/grub.cfg
159fi
160
161sync
162
163# Don't report the exitcode last command
164exit 0