From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1105091-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B2DF9138334 for <garchives@archives.gentoo.org>; Sun, 11 Aug 2019 16:07:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4854E0886; Sun, 11 Aug 2019 16:07:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C65B9E0886 for <gentoo-commits@lists.gentoo.org>; Sun, 11 Aug 2019 16:07:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 789CD3498EA for <gentoo-commits@lists.gentoo.org>; Sun, 11 Aug 2019 16:07:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DA3C740 for <gentoo-commits@lists.gentoo.org>; Sun, 11 Aug 2019 16:07:51 +0000 (UTC) From: "Mike Gilbert" <floppym@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" <floppym@gentoo.org> Message-ID: <1565539652.d627c578b9e27b5349f39fcd238f108734c115f5.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/systemd/systemd-242-r6.ebuild sys-apps/systemd/systemd-243_rc1-r1.ebuild sys-apps/systemd/systemd-9999.ebuild X-VCS-Directories: sys-apps/systemd/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: d627c578b9e27b5349f39fcd238f108734c115f5 X-VCS-Branch: master Date: Sun, 11 Aug 2019 16:07:51 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3240390c-5f79-4f05-9ad9-e227db05e751 X-Archives-Hash: 597e441d570987a91a5845b5344a5d4c commit: d627c578b9e27b5349f39fcd238f108734c115f5 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org> AuthorDate: Sun Aug 11 16:07:32 2019 +0000 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> CommitDate: Sun Aug 11 16:07:32 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d627c578 sys-apps/systemd: add postinst message about "systemctl preset-all" Closes: https://bugs.gentoo.org/691854 Package-Manager: Portage-2.3.71, Repoman-2.3.16_p24 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org> sys-apps/systemd/systemd-242-r6.ebuild | 5 +++++ sys-apps/systemd/systemd-243_rc1-r1.ebuild | 5 +++++ sys-apps/systemd/systemd-9999.ebuild | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/sys-apps/systemd/systemd-242-r6.ebuild b/sys-apps/systemd/systemd-242-r6.ebuild index eb97107359b..96430b07ddd 100644 --- a/sys-apps/systemd/systemd-242-r6.ebuild +++ b/sys-apps/systemd/systemd-242-r6.ebuild @@ -481,6 +481,11 @@ pkg_postinst() { eerror "systemd again." eerror fi + + if [[ -z ${REPLACING_VERSIONS} ]]; then + elog "To enable a useful set of services, run the following:" + elog " systemctl preset-all" + fi } pkg_prerm() { diff --git a/sys-apps/systemd/systemd-243_rc1-r1.ebuild b/sys-apps/systemd/systemd-243_rc1-r1.ebuild index a3e140a028c..34b6587a0db 100644 --- a/sys-apps/systemd/systemd-243_rc1-r1.ebuild +++ b/sys-apps/systemd/systemd-243_rc1-r1.ebuild @@ -462,6 +462,11 @@ pkg_postinst() { eerror "systemd again." eerror fi + + if [[ -z ${REPLACING_VERSIONS} ]]; then + elog "To enable a useful set of services, run the following:" + elog " systemctl preset-all" + fi } pkg_prerm() { diff --git a/sys-apps/systemd/systemd-9999.ebuild b/sys-apps/systemd/systemd-9999.ebuild index c259ae220b7..c4350573c99 100644 --- a/sys-apps/systemd/systemd-9999.ebuild +++ b/sys-apps/systemd/systemd-9999.ebuild @@ -461,6 +461,11 @@ pkg_postinst() { eerror "systemd again." eerror fi + + if [[ -z ${REPLACING_VERSIONS} ]]; then + elog "To enable a useful set of services, run the following:" + elog " systemctl preset-all" + fi } pkg_prerm() {