LiteSpeed Linux server2.poyrazhosting.com 3.10.0-962.3.2.lve1.5.77.el7.x86_64 #1 SMP Mon Dec 12 07:06:14 EST 2022 x86_64 safemode : OFF MySQL: OFF | Perl: OFF | cURL: ON | WGet: OFF > / lib / rpm / | Server Ip : 104.21.78.54 |
Filename | /lib/rpm/kabi.sh |
Size | 428 |
Permission | rwxr-xr-x |
Owner | |
Create time | 08-Dec-2022 22:35 |
Last modified | 08-Jun-2019 14:32 |
Last accessed | 08-Jun-2019 14:32 |
Actions | edit | rename | delete | download (gzip) |
View | text | code | image |
#!/bin/sh +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-*') $*;
do
zcat $symvers | awk ' {print "kernel(" $2 ") = " $1 }'
done
#
# 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-*') $*;
do
zcat $symvers | awk ' {print "kernel(" $2 ") = " $1 }'
done