Server IP : 192.158.238.246 / Your IP : 3.19.218.250 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /usr/lib/rpm/ |
Upload File : |
#!/bin/bash # # Script to install in: # /usr/lib/rpm/redhat/find-provides.d # # Transform font files into RPM provides # Requires fontconfig >= 2.6.90 # # Author: Behdad Esfahbod <behdad@redhat.com> # Based on other provides scripts from RPM # fcquery=/usr/bin/fc-query if [ ! -x $fcquery ]; then cat > /dev/null exit 0 fi # filter out anything outside main fontconfig path grep /usr/share/fonts/ | while read fn; do $fcquery --format '%{=pkgkit}' "${fn}" 2> /dev/null done