diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2020-06-19 19:59:04 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2020-06-19 22:41:30 +0200 |
commit | b25c84154fbea96dc71b06605c8447a47342bedb (patch) | |
tree | 0629044b7c7fc5cb0bf820bef8ffd2f973e8b339 /source/a | |
parent | 0ded95a6619bb151727096c01a30879455d04374 (diff) | |
download | current-b25c84154fbea96dc71b06605c8447a47342bedb.tar.gz |
Fri Jun 19 19:59:04 UTC 202020200619195904
a/haveged-1.9.12-x86_64-1.txz: Upgraded.
a/kernel-firmware-20200619_3890db3-noarch-1.txz: Upgraded.
a/sysvinit-scripts-2.1-noarch-34.txz: Rebuilt.
rc.M: check for elogind first so that we can ignore a stale CK2 package.
ap/sudo-1.9.1-x86_64-1.txz: Upgraded.
l/alsa-lib-1.2.3.1-x86_64-1.txz: Upgraded.
l/desktop-file-utils-0.26-x86_64-1.txz: Upgraded.
n/mutt-1.14.4-x86_64-1.txz: Upgraded.
x/libinput-1.15.6-x86_64-1.txz: Upgraded.
x/xinit-1.4.1-x86_64-2.txz: Rebuilt.
When using elogind, start the session on the current console.
Thanks to alienBOB.
Diffstat (limited to 'source/a')
-rw-r--r-- | source/a/sysvinit-scripts/scripts/rc.M | 6 | ||||
-rwxr-xr-x | source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source/a/sysvinit-scripts/scripts/rc.M b/source/a/sysvinit-scripts/scripts/rc.M index 5bdf6ed4..d02452ea 100644 --- a/source/a/sysvinit-scripts/scripts/rc.M +++ b/source/a/sysvinit-scripts/scripts/rc.M @@ -117,10 +117,10 @@ if [ -x /etc/rc.d/rc.messagebus ]; then fi # 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 +if [ -x /etc/rc.d/rc.elogind ]; then /etc/rc.d/rc.elogind start +elif [ -x /etc/rc.d/rc.consolekit -a -x /usr/sbin/console-kit-daemon ]; then + /etc/rc.d/rc.consolekit start fi # Start Bluetooth: diff --git a/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild b/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild index e33b54ca..3f08aad9 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:-33} +BUILD=${BUILD:-34} # 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 |