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 1879C138334 for ; Thu, 26 Jul 2018 18:15:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B768AE08A2; Thu, 26 Jul 2018 18:15:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4F3A9E08A2 for ; Thu, 26 Jul 2018 18:15:04 +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 0A681335CC9 for ; Thu, 26 Jul 2018 18:15:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 855E5365 for ; Thu, 26 Jul 2018 18:14:58 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1532628889.d32fc9a088a1abd9c6f9462822c3f5aac80f061f.dolsen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/buildbot/files/buildmaster.initd X-VCS-Directories: dev-util/buildbot/files/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: d32fc9a088a1abd9c6f9462822c3f5aac80f061f X-VCS-Branch: master Date: Thu, 26 Jul 2018 18:14:58 +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: 30d360eb-f1f5-4163-b685-ecf6a0cba638 X-Archives-Hash: e471f5799b856fd3adabcfdc232caf7d commit: d32fc9a088a1abd9c6f9462822c3f5aac80f061f Author: Brian Dolbec dolsen gentoo org> AuthorDate: Thu Jul 26 18:14:24 2018 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Thu Jul 26 18:14:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d32fc9a0 dev-util/buildbot: Fix missed checkconfig section bug 661618 Adds RUNTIME_PYTHON default setting to the init.d script Gentoo-bug: https://bugs.gentoo.org/661618 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-util/buildbot/files/buildmaster.initd | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-util/buildbot/files/buildmaster.initd b/dev-util/buildbot/files/buildmaster.initd index 933c6e2b4e5..b75ae34830d 100644 --- a/dev-util/buildbot/files/buildmaster.initd +++ b/dev-util/buildbot/files/buildmaster.initd @@ -32,6 +32,9 @@ checkconfig() { eerror "${BUILDMASTER_PATH} does not contain buildbot.tac" return 1 fi + if [ ! -e "${RUNTIME_PYTHON}" ]; then + RUNTIME_PYTHON="/usr/bin/python" + fi } start() {