From: Andreas Sturmlechner Date: Sat, 11 Aug 2018 16:41:35 +0000 (+0200) Subject: sys-auth/elogind: Re-add postinst info about dbus activation X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=c93883987ceeb19755ec7f9b75b7e5c07bf95bed;p=gentoo.git sys-auth/elogind: Re-add postinst info about dbus activation This time as elog, not ewarn. Bug: https://bugs.gentoo.org/633486 --- diff --git a/sys-auth/elogind/elogind-238.1.ebuild b/sys-auth/elogind/elogind-238.1.ebuild index c9398ff2885a..cc148ee6f8da 100644 --- a/sys-auth/elogind/elogind-238.1.ebuild +++ b/sys-auth/elogind/elogind-238.1.ebuild @@ -113,8 +113,17 @@ pkg_postinst() { ewarn "# rc-update del elogind default" ewarn "# rc-update add elogind boot" else - ewarn "elogind is currently not started from any runlevel." - ewarn "You may add it to the boot runlevel by:" - ewarn "# rc-update add elogind boot" + elog "elogind is currently not started from any runlevel." + elog "You may add it to the boot runlevel by:" + elog "# rc-update add elogind boot" + elog + elog "Alternatively, you can leave elogind out of any" + elog "runlevel. It will then be started automatically" + if use pam; then + elog "when the first service calls it via dbus, or" + elog "the first user logs into the system." + else + elog "when the first service calls it via dbus." + fi fi }