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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 41D2A1382C5 for ; Mon, 5 Mar 2018 14:23:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E163E0844; Mon, 5 Mar 2018 14:23:42 +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 2BE1DE0844 for ; Mon, 5 Mar 2018 14:23:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 5E5BD335C05 for ; Mon, 5 Mar 2018 14:23:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA21A1EF for ; Mon, 5 Mar 2018 14:23:36 +0000 (UTC) From: "Aaron Swenson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Swenson" Message-ID: <1520259798.2d318e40c44970048bee910f78e35b07e6bd7906.titanofold@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/quassel/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/quassel/files/quasselcore.init net-irc/quassel/files/quasselcore.init-r1 X-VCS-Directories: net-irc/quassel/files/ X-VCS-Committer: titanofold X-VCS-Committer-Name: Aaron Swenson X-VCS-Revision: 2d318e40c44970048bee910f78e35b07e6bd7906 X-VCS-Branch: master Date: Mon, 5 Mar 2018 14:23:36 +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-Archives-Salt: 482dbc74-5c27-4328-a631-81cce95a77b2 X-Archives-Hash: 6886862e700b9db055065feb803a95c8 commit: 2d318e40c44970048bee910f78e35b07e6bd7906 Author: Aaron W. Swenson gentoo org> AuthorDate: Mon Mar 5 14:23:18 2018 +0000 Commit: Aaron Swenson gentoo org> CommitDate: Mon Mar 5 14:23:18 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d318e40 net-irc/quassel: Spelling fix in intscript depend dev-db/postgresql initscripts provide “postgresql”, not “postgres”. Closes: https://bugs.gentoo.org/639920 Package-Manager: Portage-2.3.19, Repoman-2.3.6 net-irc/quassel/files/quasselcore.init | 4 ++-- net-irc/quassel/files/quasselcore.init-r1 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/net-irc/quassel/files/quasselcore.init b/net-irc/quassel/files/quasselcore.init index 468c24ec299..8e66dff8ca3 100644 --- a/net-irc/quassel/files/quasselcore.init +++ b/net-irc/quassel/files/quasselcore.init @@ -1,10 +1,10 @@ #!/sbin/openrc-run -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 depend() { need localmount net - after bootmisc postgres + after bootmisc postgresql } CORE="$(which quasselcore)" diff --git a/net-irc/quassel/files/quasselcore.init-r1 b/net-irc/quassel/files/quasselcore.init-r1 index 5976235aafa..cfcb5dbb901 100644 --- a/net-irc/quassel/files/quasselcore.init-r1 +++ b/net-irc/quassel/files/quasselcore.init-r1 @@ -1,9 +1,9 @@ #!/sbin/openrc-run -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 depend() { - after logger postgres + after logger postgresql } LISTEN=${LISTEN:-"0.0.0.0"}