HOME SHELL

NULLCOMMUNITY
 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
Size428
Permissionrwxr-xr-x
Owner
Create time08-Dec-2022 22:35
Last modified08-Jun-2019 14:32
Last accessed08-Jun-2019 14:32
Actionsedit | rename | delete | download (gzip)
Viewtext | 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