mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-05-02 00:02:55 +02:00
core187: start updater
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
@@ -1 +0,0 @@
|
||||
../../../../common/aarch64/linux
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/apache2
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/bind
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/btrfs-progs
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/collectd
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/dracut
|
||||
@@ -1,19 +0,0 @@
|
||||
etc/rc.d/helper/aws-setup
|
||||
etc/rc.d/helper/azure-setup
|
||||
etc/rc.d/helper/exoscale-setup
|
||||
etc/rc.d/helper/gcp-setup
|
||||
etc/rc.d/helper/oci-setup
|
||||
etc/rc.d/init.d/apache
|
||||
etc/rc.d/init.d/networking/red
|
||||
etc/rc.d/init.d/static-routes
|
||||
etc/ppp/ip-up
|
||||
etc/rc.d/init.d/functions
|
||||
etc/rc.d/init.d/grub-btrfsd
|
||||
etc/rc.d/rc0.d/K01grub-btrfsd
|
||||
etc/rc.d/rc3.d/S99grub-btrfsd
|
||||
etc/rc.d/rc6.d/K01grub-btrfsd
|
||||
srv/web/ipfire/cgi-bin/vulnerabilities.cgi
|
||||
usr/local/bin/ipsec-interfaces
|
||||
usr/sbin/unbound-dhcp-leases-bridge
|
||||
var/ipfire/header.pl
|
||||
var/ipfire/ipblocklist/sources
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/grub-btrfs
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/inotify-tools
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/kmod
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/libhtp
|
||||
@@ -1 +0,0 @@
|
||||
../../../../common/riscv64/linux
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/sqlite
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/squid
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/strongswan
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/suricata
|
||||
@@ -1 +0,0 @@
|
||||
../../../common/tzdata
|
||||
@@ -1 +0,0 @@
|
||||
../../../../common/x86_64/intel-microcode
|
||||
@@ -1 +0,0 @@
|
||||
../../../../common/x86_64/linux
|
||||
@@ -1,173 +0,0 @@
|
||||
#!/bin/bash
|
||||
############################################################################
|
||||
# #
|
||||
# This file is part of the IPFire Firewall. #
|
||||
# #
|
||||
# IPFire is free software; you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
# the Free Software Foundation; either version 3 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# IPFire is distributed in the hope that it will be useful, #
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||
# GNU General Public License for more details. #
|
||||
# #
|
||||
# You should have received a copy of the GNU General Public License #
|
||||
# along with IPFire; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Copyright (C) 2024 IPFire-Team <info@ipfire.org>. #
|
||||
# #
|
||||
############################################################################
|
||||
#
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
|
||||
|
||||
core=186
|
||||
|
||||
exit_with_error() {
|
||||
# Set last succesfull installed core.
|
||||
echo $(($core-1)) > /opt/pakfire/db/core/mine
|
||||
# force fsck at next boot, this may fix free space on xfs
|
||||
touch /forcefsck
|
||||
# don't start pakfire again at error
|
||||
killall -KILL pak_update
|
||||
/usr/bin/logger -p syslog.emerg -t ipfire \
|
||||
"core-update-${core}: $1"
|
||||
exit $2
|
||||
}
|
||||
|
||||
# Remove old core updates from pakfire cache to save space...
|
||||
for (( i=1; i<=$core; i++ )); do
|
||||
rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
|
||||
done
|
||||
|
||||
# Stop services
|
||||
/etc/rc.d/init.d/apache stop
|
||||
|
||||
KVER="xxxKVERxxx"
|
||||
|
||||
# Backup uEnv.txt if exist
|
||||
if [ -e /boot/uEnv.txt ]; then
|
||||
cp -vf /boot/uEnv.txt /boot/uEnv.txt.org
|
||||
fi
|
||||
|
||||
# Do some sanity checks prior to the kernel update
|
||||
case $(uname -r) in
|
||||
*-ipfire*)
|
||||
# Ok.
|
||||
;;
|
||||
*)
|
||||
exit_with_error "ERROR cannot update. No IPFire Kernel." 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# Check diskspace on root and size of boot
|
||||
ROOTSPACE=$( df / -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1 )
|
||||
if [ $ROOTSPACE -lt 200000 ]; then
|
||||
exit_with_error "ERROR cannot update because not enough free space on root." 2
|
||||
fi
|
||||
BOOTSIZE=$( df /boot -Pk | sed "s| * | |g" | cut -d" " -f2 | tail -n 1 )
|
||||
if [ $BOOTSIZE -lt 100000 ]; then
|
||||
exit_with_error "ERROR cannot update. BOOT partition is to small." 3
|
||||
fi
|
||||
|
||||
# Remove the old kernel
|
||||
rm -rvf \
|
||||
/boot/System.map-* \
|
||||
/boot/config-* \
|
||||
/boot/ipfirerd-* \
|
||||
/boot/initramfs-* \
|
||||
/boot/vmlinuz-* \
|
||||
/boot/uImage-* \
|
||||
/boot/zImage-* \
|
||||
/boot/uInit-* \
|
||||
/boot/dtb-* \
|
||||
/lib/modules
|
||||
|
||||
# Remove icinga and sslh add-on, if installed
|
||||
for addon in icinga sslh; do
|
||||
if [ -e "/opt/pakfire/db/installed/meta-${addon}" ]; then
|
||||
/etc/init.d/${addon} stop
|
||||
for i in $(</opt/pakfire/db/rootfiles/${addon}); do
|
||||
rm -rfv "/${i}"
|
||||
done
|
||||
fi
|
||||
rm -vf \
|
||||
/opt/pakfire/db/installed/meta-${addon} \
|
||||
/opt/pakfire/db/meta/meta-${addon} \
|
||||
/opt/pakfire/db/rootfiles/${addon}
|
||||
done
|
||||
|
||||
# Extract files
|
||||
extract_files
|
||||
|
||||
# Remove files
|
||||
#rm -rvf \
|
||||
# /XXX
|
||||
|
||||
# update linker config
|
||||
ldconfig
|
||||
|
||||
# Update Language cache
|
||||
/usr/local/bin/update-lang-cache
|
||||
|
||||
# Filesytem cleanup
|
||||
/usr/local/bin/filesystem-cleanup
|
||||
|
||||
# Start services
|
||||
/etc/rc.d/init.d/apache start
|
||||
|
||||
# Build initial ramdisks
|
||||
dracut --regenerate-all --force
|
||||
KVER="xxxKVERxxx"
|
||||
case "$(uname -m)" in
|
||||
aarch64)
|
||||
mkimage -A arm64 -T ramdisk -C lzma -d /boot/initramfs-${KVER}-ipfire.img /boot/uInit-${KVER}-ipfire
|
||||
# dont remove initramfs because grub need this to boot.
|
||||
;;
|
||||
esac
|
||||
|
||||
# Upadate Kernel version in uEnv.txt
|
||||
if [ -e /boot/uEnv.txt ]; then
|
||||
sed -i -e "s/KVER=.*/KVER=${KVER}/g" /boot/uEnv.txt
|
||||
fi
|
||||
|
||||
# Call user update script (needed for some ARM boards)
|
||||
if [ -e /boot/pakfire-kernel-update ]; then
|
||||
/boot/pakfire-kernel-update ${KVER}
|
||||
fi
|
||||
|
||||
# Remove any entry for ALIENVAULT or SPAMHAUS_EDROP from the ipblocklist modified file
|
||||
# and the associated ipblocklist files from the /var/lib/ipblocklist directory
|
||||
# If SPAMHAUS_EDROP was used and SPAMHAUS_DROP not used then add SPAMHAUS_DROP to settings file
|
||||
sed -i '/ALIENVAULT=/d' /var/ipfire/ipblocklist/modified
|
||||
sed -i '/SPAMHAUS_EDROP=/d' /var/ipfire/ipblocklist/modified
|
||||
if [ -e /var/lib/ipblocklist/ALIENVAULT.conf ]; then
|
||||
rm /var/lib/ipblocklist/ALIENVAULT.conf
|
||||
fi
|
||||
if [ -e /var/lib/ipblocklist/SPAMHAUS_EDROP.conf ]; then
|
||||
rm /var/lib/ipblocklist/SPAMHAUS_EDROP.conf
|
||||
if [ ! -e /var/lib/ipblocklist/SPAMHAUS_DROP.conf ]; then
|
||||
echo "SPAMHAUS_DROP=on" >> /var/ipfire/ipblocklist/settings
|
||||
fi
|
||||
fi
|
||||
|
||||
# This update needs a reboot...
|
||||
touch /var/run/need_reboot
|
||||
|
||||
# Finish
|
||||
/etc/init.d/fireinfo start
|
||||
sendprofile
|
||||
|
||||
# Update grub config to display new core version
|
||||
if [ -e /boot/grub/grub.cfg ]; then
|
||||
/usr/bin/install-bootloader
|
||||
fi
|
||||
|
||||
sync
|
||||
|
||||
# Don't report the exitcode last command
|
||||
exit 0
|
||||
|
||||
58
config/rootfiles/core/187/filelists/files
Normal file
58
config/rootfiles/core/187/filelists/files
Normal file
@@ -0,0 +1,58 @@
|
||||
etc/rc.d/init.d/functions
|
||||
etc/sudoers.d/logwatch-mdadm
|
||||
lib/firmware/brcm/BCM-0a5c-6410.hcd
|
||||
lib/firmware/brcm/brcmfmac43012-sdio.bin
|
||||
lib/firmware/brcm/brcmfmac43012-sdio.clm_blob
|
||||
lib/firmware/brcm/brcmfmac43430-sdio.clm_blob
|
||||
lib/firmware/brcm/brcmfmac43430-sdio.raspberrypi,model-zero-w.txt
|
||||
lib/firmware/brcm/brcmfmac43430-sdio.sinovoip,bpi-m2-plus.txt
|
||||
lib/firmware/brcm/brcmfmac43430-sdio.sinovoip,bpi-m2-ultra.txt
|
||||
lib/firmware/brcm/brcmfmac43430-sdio.sinovoip,bpi-m2-zero.txt
|
||||
lib/firmware/brcm/brcmfmac43430-sdio.sinovoip,bpi-m3.txt
|
||||
lib/firmware/brcm/brcmfmac43455-sdio.clm_blob
|
||||
lib/firmware/brcm/brcmfmac43455-sdio.raspberrypi,3-model-a-plus.txt
|
||||
lib/firmware/brcm/brcmfmac43455-sdio.Raspberry Pi Foundation-Raspberry Pi 4 Model B.txt
|
||||
lib/firmware/brcm/brcmfmac43455-sdio.Raspberry Pi Foundation-Raspberry Pi Compute Module 4.txt
|
||||
lib/firmware/brcm/brcmfmac4354-sdio.clm_blob
|
||||
lib/firmware/brcm/brcmfmac4356-pcie.clm_blob
|
||||
lib/firmware/brcm/brcmfmac4356-sdio.clm_blob
|
||||
lib/firmware/brcm/brcmfmac4356-sdio.khadas,vim2.txt
|
||||
lib/firmware/brcm/brcmfmac43570-pcie.clm_blob
|
||||
lib/firmware/brcm/brcmfmac4373-sdio.clm_blob
|
||||
lib/firmware/brcm/brcmfmac54591-pcie.bin
|
||||
lib/firmware/brcm/brcmfmac54591-pcie.clm_blob
|
||||
lib/firmware/cxgb4/t4-config.txt
|
||||
lib/firmware/cxgb4/t5-config.txt
|
||||
lib/firmware/cxgb4/t6-config.txt
|
||||
lib/firmware/intel/ice/ddp/ice.pkg
|
||||
lib/firmware/netronome/flower/nic_AMDA0058-0011_1x100.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0058-0011_2x40.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0058-0011_4x10_1x40.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0058-0011_8x10.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0058-0012_1x100.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0058-0012_2x40.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0058-0012_4x10_1x40.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0058-0012_8x10.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0078-0011_1x100.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0078-0011_2x40.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0078-0011_4x10_1x40.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0078-0011_8x10.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0078-0012_1x100.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0078-0012_2x40.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0078-0012_4x10_1x40.nffw
|
||||
lib/firmware/netronome/flower/nic_AMDA0078-0012_8x10.nffw
|
||||
lib/firmware/nvidia/tegra124/vic.bin
|
||||
lib/firmware/nvidia/tegra186/vic.bin
|
||||
lib/firmware/nvidia/tegra210/vic.bin
|
||||
srv/web/ipfire/cgi-bin/dhcp.cgi
|
||||
srv/web/ipfire/cgi-bin/dns.cgi
|
||||
srv/web/ipfire/cgi-bin/ids.cgi
|
||||
srv/web/ipfire/cgi-bin/index.cgi
|
||||
srv/web/ipfire/cgi-bin/ovpnmain.cgi
|
||||
srv/web/ipfire/cgi-bin/time.cgi
|
||||
usr/lib/python3.10/lib-dynload/_lzma.cpython-310-xxxMACHINExxx-linux-gnu.so
|
||||
usr/local/bin/update-ids-ruleset
|
||||
var/ipfire/backup/bin/backup.pl
|
||||
var/ipfire/ids-functions.pl
|
||||
var/ipfire/main/manualpages
|
||||
var/ipfire/ovpn/openssl/ovpn.cnf
|
||||
67
config/rootfiles/core/187/update.sh
Normal file
67
config/rootfiles/core/187/update.sh
Normal file
@@ -0,0 +1,67 @@
|
||||
#!/bin/bash
|
||||
############################################################################
|
||||
# #
|
||||
# This file is part of the IPFire Firewall. #
|
||||
# #
|
||||
# IPFire is free software; you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
# the Free Software Foundation; either version 3 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# IPFire is distributed in the hope that it will be useful, #
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||
# GNU General Public License for more details. #
|
||||
# #
|
||||
# You should have received a copy of the GNU General Public License #
|
||||
# along with IPFire; if not, write to the Free Software #
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||
# #
|
||||
# Copyright (C) 2024 IPFire-Team <info@ipfire.org>. #
|
||||
# #
|
||||
############################################################################
|
||||
#
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
/usr/local/bin/backupctrl exclude >/dev/null 2>&1
|
||||
|
||||
core=187
|
||||
|
||||
# Remove old core updates from pakfire cache to save space...
|
||||
for (( i=1; i<=$core; i++ )); do
|
||||
rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
|
||||
done
|
||||
|
||||
# Stop services
|
||||
|
||||
# Extract files
|
||||
extract_files
|
||||
|
||||
# Remove files
|
||||
|
||||
# update linker config
|
||||
ldconfig
|
||||
|
||||
# Update Language cache
|
||||
/usr/local/bin/update-lang-cache
|
||||
|
||||
# Filesytem cleanup
|
||||
/usr/local/bin/filesystem-cleanup
|
||||
|
||||
# Start services
|
||||
|
||||
# This update needs a reboot...
|
||||
#touch /var/run/need_reboot
|
||||
|
||||
# Finish
|
||||
/etc/init.d/fireinfo start
|
||||
sendprofile
|
||||
|
||||
# Update grub config to display new core version
|
||||
if [ -e /boot/grub/grub.cfg ]; then
|
||||
grub-mkconfig -o /boot/grub/grub.cfg
|
||||
fi
|
||||
|
||||
sync
|
||||
|
||||
# Don't report the exitcode last command
|
||||
exit 0
|
||||
Reference in New Issue
Block a user