mirror of
git://slackware.nl/current.git
synced 2024-11-16 07:48:02 +01:00
f8721233ca
ap/inxi-3.3.12_1-noarch-1.txz: Upgraded. ap/man-db-2.9.4-x86_64-3.txz: Rebuilt. Don't use --no-purge in the daily cron job to update the databases. l/gst-plugins-bad-free-1.18.5-x86_64-4.txz: Rebuilt. Link against neon-0.32.2. Thanks to marav. n/bind-9.16.25-x86_64-1.txz: Upgraded. n/ethtool-5.16-x86_64-1.txz: Upgraded. n/samba-4.15.4-x86_64-1.txz: Upgraded. n/wpa_supplicant-2.10-x86_64-1.txz: Upgraded. The implementations of EAP-pwd in hostapd before 2.10 and wpa_supplicant before 2.10 are vulnerable to side-channel attacks as a result of cache access patterns. NOTE: this issue exists because of an incomplete fix for CVE-2019-9495. For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23303 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23304 (* Security fix *) x/xterm-370-x86_64-6.txz: Rebuilt. XTerm-console: improve the font settings. Thanks to GazL.
13 lines
419 B
Bash
13 lines
419 B
Bash
#!/bin/sh
|
|
# man-db daily cronjob, part of the man-db package.
|
|
|
|
# Unset $MANPATH so that mandb will get it from man_db.conf rather than
|
|
# the environment:
|
|
unset MANPATH
|
|
|
|
# Make sure the man-db cache directory exists:
|
|
mkdir -p /var/cache/man
|
|
|
|
# Regenerate the index databases caches used by man-db.
|
|
# These increase perfomance and provide features such as whatis and apropos.
|
|
ionice -c3 nice -n 19 /usr/bin/mandb --quiet
|