diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2020-06-18 22:01:29 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2020-06-19 08:59:52 +0200 |
commit | 0ded95a6619bb151727096c01a30879455d04374 (patch) | |
tree | 6456120ea73101b045cbd698d9cbc726948ec9f4 /source | |
parent | 815d3877048a3e2d0d34b1c96fe3203c98c16f34 (diff) | |
download | current-0ded95a6619bb151727096c01a30879455d04374.tar.gz current-0ded95a6619bb151727096c01a30879455d04374.tar.xz |
Thu Jun 18 22:01:29 UTC 202020200618220129
a/kernel-generic-5.4.47-x86_64-1.txz: Upgraded.
a/kernel-huge-5.4.47-x86_64-1.txz: Upgraded.
a/kernel-modules-5.4.47-x86_64-1.txz: Upgraded.
a/sysvinit-scripts-2.1-noarch-33.txz: Rebuilt.
rc.M: add support for elogind. Thanks to alienBOB.
a/util-linux-2.35.2-x86_64-3.txz: Rebuilt.
/etc/pam.d/login: support pam_elogind.so. Thanks to alienBOB.
ap/sqlite-3.32.3-x86_64-1.txz: Upgraded.
d/kernel-headers-5.4.47-x86-1.txz: Upgraded.
d/rust-1.44.1-x86_64-1.txz: Upgraded.
k/kernel-source-5.4.47-noarch-1.txz: Upgraded.
n/bind-9.16.4-x86_64-1.txz: Upgraded.
This update fixes two security issues:
It was possible to trigger an INSIST when determining whether a record would
fit into a TCP message buffer.
It was possible to trigger an INSIST in lib/dns/rbtdb.c:new_reference() with
a particular zone content and query patterns.
For more information, see:
https://kb.isc.org/docs/cve-2020-8618
https://kb.isc.org/docs/cve-2020-8619
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-8618
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-8619
(* Security fix *)
isolinux/initrd.img: Rebuilt.
kernels/*: Upgraded.
usb-and-pxe-installers/usbboot.img: Rebuilt.
Diffstat (limited to 'source')
-rw-r--r-- | source/a/sysvinit-scripts/scripts/rc.M | 6 | ||||
-rwxr-xr-x | source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild | 2 | ||||
-rw-r--r-- | source/a/util-linux/pam.d/login | 3 | ||||
-rwxr-xr-x | source/a/util-linux/util-linux.SlackBuild | 2 | ||||
-rwxr-xr-x | source/d/rust/rust.SlackBuild | 2 | ||||
-rw-r--r-- | source/d/rust/rust.url | 2 | ||||
-rw-r--r-- | source/k/kernel-configs/config-generic-5.4.47 (renamed from source/k/kernel-configs/config-generic-5.4.46) | 2 | ||||
-rw-r--r-- | source/k/kernel-configs/config-generic-5.4.47.x64 (renamed from source/k/kernel-configs/config-generic-5.4.46.x64) | 2 | ||||
-rw-r--r-- | source/k/kernel-configs/config-generic-smp-5.4.47-smp (renamed from source/k/kernel-configs/config-generic-smp-5.4.46-smp) | 2 | ||||
-rw-r--r-- | source/k/kernel-configs/config-huge-5.4.47 (renamed from source/k/kernel-configs/config-huge-5.4.46) | 2 | ||||
-rw-r--r-- | source/k/kernel-configs/config-huge-5.4.47.x64 (renamed from source/k/kernel-configs/config-huge-5.4.46.x64) | 2 | ||||
-rw-r--r-- | source/k/kernel-configs/config-huge-smp-5.4.47-smp (renamed from source/k/kernel-configs/config-huge-smp-5.4.46-smp) | 2 |
12 files changed, 16 insertions, 13 deletions
diff --git a/source/a/sysvinit-scripts/scripts/rc.M b/source/a/sysvinit-scripts/scripts/rc.M index b3490eb58..5bdf6ed43 100644 --- a/source/a/sysvinit-scripts/scripts/rc.M +++ b/source/a/sysvinit-scripts/scripts/rc.M @@ -116,9 +116,11 @@ if [ -x /etc/rc.d/rc.messagebus ]; then /etc/rc.d/rc.messagebus start fi -# Start console-kit-daemon: -if [ -x /etc/rc.d/rc.consolekit ]; then +# Start the session/seat daemon: +if [ -x /etc/rc.d/rc.consolekit -a -x /usr/sbin/console-kit-daemon ]; then /etc/rc.d/rc.consolekit start +elif [ -x /etc/rc.d/rc.elogind ]; then + /etc/rc.d/rc.elogind start fi # Start Bluetooth: diff --git a/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild b/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild index 212f78872..e33b54caf 100755 --- a/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild +++ b/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=sysvinit-scripts VERSION=${VERSION:-2.1} ARCH=noarch -BUILD=${BUILD:-32} +BUILD=${BUILD:-33} # If the variable PRINT_PACKAGE_NAME is set, then this script will report what # the name of the created package would be, and then exit. This information diff --git a/source/a/util-linux/pam.d/login b/source/a/util-linux/pam.d/login index 1e965f11e..8b6792263 100644 --- a/source/a/util-linux/pam.d/login +++ b/source/a/util-linux/pam.d/login @@ -16,4 +16,5 @@ password include system-auth session include system-auth session include postlogin session required pam_loginuid.so -session optional pam_ck_connector.so nox11 +-session optional pam_ck_connector.so nox11 +-session optional pam_elogind.so diff --git a/source/a/util-linux/util-linux.SlackBuild b/source/a/util-linux/util-linux.SlackBuild index 3c33fe586..a7eaff24a 100755 --- a/source/a/util-linux/util-linux.SlackBuild +++ b/source/a/util-linux/util-linux.SlackBuild @@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=util-linux VERSION=${VERSION:-$(echo util-linux*.tar.xz | cut -d - -f 3 | rev | cut -f 3- -d . | rev)} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} ADJTIMEXVERS=1.29 SETSERIALVERS=2.17 diff --git a/source/d/rust/rust.SlackBuild b/source/d/rust/rust.SlackBuild index 67a89fe9d..8756d19aa 100755 --- a/source/d/rust/rust.SlackBuild +++ b/source/d/rust/rust.SlackBuild @@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=rust SRCNAM="${PKGNAM}c" -VERSION=${VERSION:-1.44.0} +VERSION=${VERSION:-1.44.1} BUILD=${BUILD:-1} # Set this to YES to build with the system LLVM, or NO to use the bundled LLVM. diff --git a/source/d/rust/rust.url b/source/d/rust/rust.url index 3dba16c93..3e0145069 100644 --- a/source/d/rust/rust.url +++ b/source/d/rust/rust.url @@ -1,5 +1,5 @@ # Source code (repacked to .tar.xz): -lftpget https://static.rust-lang.org/dist/rustc-1.44.0-src.tar.gz +lftpget https://static.rust-lang.org/dist/rustc-1.44.1-src.tar.gz gzip -d rustc-*tar.gz plzip -9 -v rustc-*tar diff --git a/source/k/kernel-configs/config-generic-5.4.46 b/source/k/kernel-configs/config-generic-5.4.47 index 08d559629..3ce14941e 100644 --- a/source/k/kernel-configs/config-generic-5.4.46 +++ b/source/k/kernel-configs/config-generic-5.4.47 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.46 Kernel Configuration +# Linux/x86 5.4.47 Kernel Configuration # # diff --git a/source/k/kernel-configs/config-generic-5.4.46.x64 b/source/k/kernel-configs/config-generic-5.4.47.x64 index f80df1e7d..9ac828726 100644 --- a/source/k/kernel-configs/config-generic-5.4.46.x64 +++ b/source/k/kernel-configs/config-generic-5.4.47.x64 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.46 Kernel Configuration +# Linux/x86 5.4.47 Kernel Configuration # # diff --git a/source/k/kernel-configs/config-generic-smp-5.4.46-smp b/source/k/kernel-configs/config-generic-smp-5.4.47-smp index 1c6faf9e1..a4acb8242 100644 --- a/source/k/kernel-configs/config-generic-smp-5.4.46-smp +++ b/source/k/kernel-configs/config-generic-smp-5.4.47-smp @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.46 Kernel Configuration +# Linux/x86 5.4.47 Kernel Configuration # # diff --git a/source/k/kernel-configs/config-huge-5.4.46 b/source/k/kernel-configs/config-huge-5.4.47 index b2ce40d30..0274af169 100644 --- a/source/k/kernel-configs/config-huge-5.4.46 +++ b/source/k/kernel-configs/config-huge-5.4.47 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.46 Kernel Configuration +# Linux/x86 5.4.47 Kernel Configuration # # diff --git a/source/k/kernel-configs/config-huge-5.4.46.x64 b/source/k/kernel-configs/config-huge-5.4.47.x64 index 8500b1d2c..f0903f838 100644 --- a/source/k/kernel-configs/config-huge-5.4.46.x64 +++ b/source/k/kernel-configs/config-huge-5.4.47.x64 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.46 Kernel Configuration +# Linux/x86 5.4.47 Kernel Configuration # # diff --git a/source/k/kernel-configs/config-huge-smp-5.4.46-smp b/source/k/kernel-configs/config-huge-smp-5.4.47-smp index 94635b876..f78d4ddcb 100644 --- a/source/k/kernel-configs/config-huge-smp-5.4.46-smp +++ b/source/k/kernel-configs/config-huge-smp-5.4.47-smp @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 5.4.46 Kernel Configuration +# Linux/x86 5.4.47 Kernel Configuration # # |