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