Update kernel-clean.sh

add pve-kernel-6.1 check
This commit is contained in:
tteckster 2023-01-16 11:02:06 -05:00 committed by GitHub
parent fd05d5e756
commit 7bb145e414
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -51,18 +51,23 @@ function check_root() {
exit 1
else
header_info
edge_kernel
other_kernel
kernel_info
kernel_clean
fi
}
function edge_kernel() {
function other_kernel() {
if [[ "$current_kernel" == *"edge"* ]]; then
echo -e "\n${CROSS} ${RD}ERROR:${CL} Proxmox ${BL}${current_kernel}${CL} Kernel Active"
echo -e "\nAn Active PVE Kernel is required to use Kernel Clean\n"
exit 1
fi
if [[ "$current_kernel" == *"6.1"* ]]; then
echo -e "\n${CROSS} ${RD}ERROR:${CL} Proxmox ${BL}${current_kernel}${CL} Kernel Active"
echo -e "\nAs 5.15 is the current default kernel in PVE 7.3 the package management directly depends on it, it's not possible to use this script while running 6.1 kernels. (the script tries to remove ALL old kernels) \n"
exit 1
fi
}
function kernel_info() {