Current Path: > > lib > > > rpm > redhat
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
brp-ldconfig | File | 268 bytes | May 15 2023 14:30:31. | |
brp-mangle-shebangs | File | 4499 bytes | May 15 2023 14:30:31. | |
config.guess | File | 43940 bytes | May 15 2023 14:30:31. | |
config.sub | File | 36307 bytes | May 15 2023 14:30:31. | |
dist.sh | File | 1974 bytes | May 15 2023 14:30:31. | |
find-provides | File | 1216 bytes | May 15 2023 14:30:31. | |
find-requires | File | 936 bytes | May 15 2023 14:30:31. | |
gpgverify | File | 3622 bytes | May 15 2023 14:30:31. | |
macros | File | 10851 bytes | May 15 2023 14:30:31. | |
redhat-annobin-cc1 | File | 93 bytes | May 15 2023 14:30:31. | |
redhat-annobin-plugin-select.sh | File | 6193 bytes | May 15 2023 14:30:31. | |
redhat-annobin-select-annobin-built-plugin | File | 89 bytes | May 15 2023 14:30:31. | |
redhat-annobin-select-gcc-built-plugin | File | 93 bytes | May 15 2023 14:30:31. | |
redhat-hardened-cc1 | File | 76 bytes | May 15 2023 14:30:31. | |
redhat-hardened-ld | File | 47 bytes | May 15 2023 14:30:31. | |
rpmrc | File | 5442 bytes | May 15 2023 14:30:31. |
#!/bin/bash # This script reads filenames from STDIN and outputs any relevant provides # information that needs to be included in the package. if [ "$1" ] then package_name="$1" fi filelist=`sed "s/['\"]/\\\&/g"` [ -x /usr/lib/rpm/rpmdeps -a -n "$filelist" ] && echo $filelist | tr '[:blank:]' \\n | /usr/lib/rpm/rpmdeps --provides # # --- any other extra find-provides scripts for i in /usr/lib/rpm/redhat/find-provides.d/*.prov do [ -x $i ] && (echo $filelist | tr '[:blank:]' \\n | $i | sort -u) done # # --- Kernel module imported symbols # # Since we don't (yet) get passed the name of the package being built, we # cheat a little here by looking first for a kernel, then for a kmod. # is_kmod=1 for f in $filelist; do if [ $(echo "$f" | sed -r -ne 's:^.*/lib/modules/(.*)/(.*)\.ko(\.gz|\.bz2|\.xz)?$:\2:p') ] then is_kernel=1; fi if [ $(echo "$f" | sed -r -ne 's:^.*/boot/(.*):\1:p') ] then unset is_kmod; fi done if [ ! "$is_kernel" ] || [ "$package_name" == "kernel" ] then unset is_kmod fi [ -x /usr/lib/rpm/redhat/find-provides.ksyms ] && [ "$is_kmod" ] && printf "%s\n" "${filelist[@]}" | /usr/lib/rpm/redhat/find-provides.ksyms exit 0
SILENT KILLER Tool