diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2023-05-31 19:14:23 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2023-05-31 21:41:55 +0200 |
commit | a9c0ca9f8fa5a0a244f0f0f7b0c2623df807b494 (patch) | |
tree | d69fd5a7000e4f237d073a31e42c8ca26eeaf71e /source | |
parent | 5f99be2c8219a867c3c77ba3674e9a715fefb618 (diff) | |
download | current-a9c0ca9f8fa5a0a244f0f0f7b0c2623df807b494.tar.gz current-a9c0ca9f8fa5a0a244f0f0f7b0c2623df807b494.tar.xz |
Wed May 31 19:14:23 UTC 202320230531191423
a/elogind-252.9-x86_64-2.txz: Rebuilt.
Fix reloading elogind-daemon on package upgrade. Thanks to opty.
a/openssl11-solibs-1.1.1u-x86_64-1.txz: Upgraded.
a/sysklogd-2.5.0-x86_64-1.txz: Upgraded.
l/libssh2-1.11.0-x86_64-1.txz: Upgraded.
l/orc-0.4.34-x86_64-1.txz: Upgraded.
n/gnupg2-2.4.2-x86_64-1.txz: Upgraded.
n/openssl11-1.1.1u-x86_64-1.txz: Upgraded.
This update fixes a security issue:
Possible DoS translating ASN.1 object identifiers.
For more information, see:
https://www.openssl.org/news/secadv/20230530.txt
https://www.cve.org/CVERecord?id=CVE-2023-2650
(* Security fix *)
x/xterm-382-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source')
-rw-r--r-- | source/a/elogind/doinst.sh | 2 | ||||
-rwxr-xr-x | source/a/elogind/elogind.SlackBuild | 2 | ||||
-rwxr-xr-x | source/l/libssh2/libssh2.SlackBuild | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/source/a/elogind/doinst.sh b/source/a/elogind/doinst.sh index c4cee4321..3f311c5f5 100644 --- a/source/a/elogind/doinst.sh +++ b/source/a/elogind/doinst.sh @@ -30,7 +30,7 @@ preserve_perms etc/rc.d/rc.elogind.new config etc/elogind/logind.conf.new config etc/elogind/sleep.conf.new -if pgrep -f elogind-daemon | grep -q 'elogind-daemon'; then +if pgrep -f elogind-daemon 1> /dev/null 2> /dev/null ; then echo "Reloading elogind-daemon..." pkill -HUP -f elogind-daemon fi diff --git a/source/a/elogind/elogind.SlackBuild b/source/a/elogind/elogind.SlackBuild index ab540b576..32e90443e 100755 --- a/source/a/elogind/elogind.SlackBuild +++ b/source/a/elogind/elogind.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=elogind VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then diff --git a/source/l/libssh2/libssh2.SlackBuild b/source/l/libssh2/libssh2.SlackBuild index ffd487156..b50d380a4 100755 --- a/source/l/libssh2/libssh2.SlackBuild +++ b/source/l/libssh2/libssh2.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=libssh2 VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-2} +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then |