OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
rpm
Server IP: 191.96.63.230
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/10/2025 01:52:30 PM
r-xr-xr-x
📁
fileattrs
-
10/20/2025 03:24:27 PM
rwxr-xr-x
📄
kabi.sh
468 bytes
05/15/2023 02:30:31 PM
rwxr-xr-x
📄
kmod.prov
682 bytes
05/15/2023 02:30:31 PM
rwxr-xr-x
📁
macros.d
-
10/20/2025 03:24:14 PM
rwxr-xr-x
📁
redhat
-
10/20/2025 03:26:05 PM
rwxr-xr-x
Editing: kabi.sh
Close
#!/bin/bash +x # # kabi.sh - Automatically extract any kernel symbol checksum from the # symvers file and add to RPM deps. This is used to move the # checksum checking from modprobe to rpm install for 3rd party # modules (so they can fail during install and not at load). IFS=$'\n' for symvers in $(grep -E '(/boot/symvers-.*|/lib/modules/[1-9].*/symvers)\.gz') "$@"; do zcat $symvers | awk ' {print "kernel(" $2 ") = " $1 }' done