From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 8F89BE00D46; Fri, 26 Feb 2016 02:16:01 -0800 (PST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 6A193E00D36 for ; Fri, 26 Feb 2016 02:15:58 -0800 (PST) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga103.fm.intel.com with ESMTP; 26 Feb 2016 02:15:49 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,498,1449561600"; d="scan'208";a="55193338" Received: from linux.intel.com ([10.23.219.25]) by fmsmga004.fm.intel.com with ESMTP; 26 Feb 2016 02:15:47 -0800 Received: from vmed.fi.intel.com (vmed.fi.intel.com [10.237.72.51]) by linux.intel.com (Postfix) with ESMTP id B58012C8001 for ; Fri, 26 Feb 2016 03:03:35 -0800 (PST) From: Ed Bartosh To: toaster@yoctoproject.org Date: Fri, 26 Feb 2016 10:06:09 +0200 Message-Id: X-Mailer: git-send-email 2.1.4 Subject: [PATCH v2 0/3] remove ssh build controller X-BeenThere: toaster@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Web based interface for BitBake List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Feb 2016 10:16:01 -0000 Hi, This is a second attempt to get this through review. As ic branch has been successfuly landed I hope this one can be upstreamed too. sshbecontroller code and tests are broken for months. Its functionality(running builds on remote machine) can be achieved by simply running manage.py runbuilds on remote machine. There is not need to keep it in the codebase and confuse users from my point of view. This change would also make refactoring of buildcontroller code [YOCTO #8806] easier. Changes in v2: rebased on top of toaster-next. The following changes since commit 31e7bb2c5e900c44aded447dcaf9b090dd2cb11d: toaster: change 'delete layer' to 'remove layer' (2016-02-25 14:26:41 +0000) are available in the git repository at: git://git.yoctoproject.org/poky-contrib ed/toaster/remove-ssh-controller http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/toaster/remove-ssh-controller Ed Bartosh (3): toaster: raise NotImplementedError toaster: don't use sshbecontroller toaster: remove sshbecontroller module bitbake/lib/toaster/bldcontrol/bbcontroller.py | 16 +- .../migrations/0002_auto_20160120_1250.py | 19 +++ bitbake/lib/toaster/bldcontrol/models.py | 10 +- bitbake/lib/toaster/bldcontrol/sshbecontroller.py | 169 --------------------- bitbake/lib/toaster/bldcontrol/tests.py | 30 +--- 5 files changed, 32 insertions(+), 212 deletions(-) create mode 100644 bitbake/lib/toaster/bldcontrol/migrations/0002_auto_20160120_1250.py delete mode 100644 bitbake/lib/toaster/bldcontrol/sshbecontroller.py -- Regards, Ed