From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B3FB5158090 for ; Fri, 13 May 2022 20:04:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77DA5E092F; Fri, 13 May 2022 20:04:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5B00BE092F for ; Fri, 13 May 2022 20:04:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7D40B341ACC for ; Fri, 13 May 2022 20:04:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C4186483 for ; Fri, 13 May 2022 20:04:13 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1652472226.d2605605514f62edb6983ece30cfae3efc4c62b9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pulseaudio-daemon/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/pulseaudio-daemon/pulseaudio-daemon-15.99.1-r2.ebuild X-VCS-Directories: media-sound/pulseaudio-daemon/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d2605605514f62edb6983ece30cfae3efc4c62b9 X-VCS-Branch: master Date: Fri, 13 May 2022 20:04:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 08c42415-381e-4fdb-85eb-8344589a2003 X-Archives-Hash: 4fe5e36c488b7d6d84fa5af72440b020 commit: d2605605514f62edb6983ece30cfae3efc4c62b9 Author: Igor V. Kovalenko gmail com> AuthorDate: Tue May 10 07:05:17 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri May 13 20:03:46 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2605605 media-sound/pulseaudio-daemon: Clarify enabling systemd units for all Bug: https://bugs.gentoo.org/843449 Signed-off-by: Igor V. Kovalenko gmail.com> Signed-off-by: Sam James gentoo.org> .../pulseaudio-daemon/pulseaudio-daemon-15.99.1-r2.ebuild | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/media-sound/pulseaudio-daemon/pulseaudio-daemon-15.99.1-r2.ebuild b/media-sound/pulseaudio-daemon/pulseaudio-daemon-15.99.1-r2.ebuild index 61a9f133cb5f..9c86c92b0d78 100644 --- a/media-sound/pulseaudio-daemon/pulseaudio-daemon-15.99.1-r2.ebuild +++ b/media-sound/pulseaudio-daemon/pulseaudio-daemon-15.99.1-r2.ebuild @@ -318,10 +318,19 @@ pkg_postinst() { fi if use systemd; then + elog "Pulseaudio autospawn by client library is no longer enabled when systemd is available." elog "It's recommended to start pulseaudio via its systemd user units:" elog "" elog " systemctl --user enable pulseaudio.service pulseaudio.socket" elog "" + elog "Root user can change system default configuration for all users:" + elog "" + elog " systemctl --global enable pulseaudio.service pulseaudio.socket" + elog "" + elog "If you would like to enable autospawn by client library, edit autospawn flag in /etc/pulse/client.conf like this:" + elog "" + elog " autospawn = yes" + elog "" elog "The change from autospawn to user units will take effect after restarting." elog "" fi