diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2023-08-30 21:58:04 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2023-08-31 01:11:11 +0200 |
commit | 75bbced9d4f24d3d6de07344bbe4b88cb393f809 (patch) | |
tree | 3863264df563035fa3b95b2daee670a04302acdf /source/a/dcron | |
parent | 38c180f03785251a6371717428ee78f64ae64d50 (diff) | |
download | current-75bbced9d4f24d3d6de07344bbe4b88cb393f809.tar.gz current-75bbced9d4f24d3d6de07344bbe4b88cb393f809.tar.xz |
Wed Aug 30 21:58:04 UTC 202320230830215804
a/dcron-4.5-x86_64-13.txz: Rebuilt.
rc.crond: ensure world-writable permissions on /run/cron, needed for
crontab -e with some editors. Thanks to lostintime.
a/kernel-firmware-20230830_5ebb591-noarch-1.txz: Upgraded.
a/kernel-generic-6.1.50-x86_64-1.txz: Upgraded.
a/kernel-huge-6.1.50-x86_64-1.txz: Upgraded.
a/kernel-modules-6.1.50-x86_64-1.txz: Upgraded.
d/ccache-4.8.3-x86_64-1.txz: Upgraded.
d/clinfo-3.0.23.01.25-x86_64-1.txz: Added.
Thanks to Heinz Wiesinger.
d/kernel-headers-6.1.50-x86-1.txz: Upgraded.
d/vala-0.56.13-x86_64-1.txz: Upgraded.
k/kernel-source-6.1.50-noarch-1.txz: Upgraded.
l/libnl3-3.8.0-x86_64-1.txz: Upgraded.
l/mozjs102-102.15.0esr-x86_64-1.txz: Upgraded.
x/mesa-23.1.6-x86_64-1.txz: Upgraded.
It appears that mesa-23.2.0 was pulled and replaced with mesa-23.2.0-rc2
sometime after we upgraded to it. I've tested this version and it does not
suffer from the "radeon: failed testing IB on GFX ring" bug that was
happening with mesa-23.1.3, so let's use it for now.
xap/mozilla-firefox-115.2.0esr-x86_64-1.txz: Upgraded.
This update contains security fixes and improvements.
For more information, see:
https://www.mozilla.org/en-US/firefox/115.2.0/releasenotes/
https://www.mozilla.org/security/advisories/mfsa2023-36/
https://www.cve.org/CVERecord?id=CVE-2023-4573
https://www.cve.org/CVERecord?id=CVE-2023-4574
https://www.cve.org/CVERecord?id=CVE-2023-4575
https://www.cve.org/CVERecord?id=CVE-2023-4576
https://www.cve.org/CVERecord?id=CVE-2023-4577
https://www.cve.org/CVERecord?id=CVE-2023-4051
https://www.cve.org/CVERecord?id=CVE-2023-4578
https://www.cve.org/CVERecord?id=CVE-2023-4053
https://www.cve.org/CVERecord?id=CVE-2023-4580
https://www.cve.org/CVERecord?id=CVE-2023-4581
https://www.cve.org/CVERecord?id=CVE-2023-4582
https://www.cve.org/CVERecord?id=CVE-2023-4583
https://www.cve.org/CVERecord?id=CVE-2023-4584
https://www.cve.org/CVERecord?id=CVE-2023-4585
(* Security fix *)
xap/mozilla-thunderbird-115.2.0-x86_64-1.txz: Upgraded.
This release contains security fixes and improvements.
For more information, see:
https://www.mozilla.org/en-US/thunderbird/115.2.0/releasenotes/
(* Security fix *)
isolinux/initrd.img: Rebuilt.
kernels/*: Upgraded.
usb-and-pxe-installers/usbboot.img: Rebuilt.
Diffstat (limited to 'source/a/dcron')
-rwxr-xr-x | source/a/dcron/dcron.SlackBuild | 2 | ||||
-rw-r--r-- | source/a/dcron/rc.crond | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/source/a/dcron/dcron.SlackBuild b/source/a/dcron/dcron.SlackBuild index cf5f96787..b1bb34962 100755 --- a/source/a/dcron/dcron.SlackBuild +++ b/source/a/dcron/dcron.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=dcron VERSION=${VERSION:-$(echo dcron-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-12} +BUILD=${BUILD:-13} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then diff --git a/source/a/dcron/rc.crond b/source/a/dcron/rc.crond index d9076b330..a04f750bb 100644 --- a/source/a/dcron/rc.crond +++ b/source/a/dcron/rc.crond @@ -10,6 +10,7 @@ start_crond() { if ! /usr/bin/pgrep --ns $$ --euid root -f "^/usr/sbin/crond" 1> /dev/null 2> /dev/null ; then echo "Starting crond: /usr/sbin/crond $CROND_OPTS" mkdir -p /run/cron + chmod 1777 /run/cron /usr/sbin/crond $CROND_OPTS fi } |