From patchwork Sun Feb 26 22:22:09 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael-Doyle Hudson X-Patchwork-Id: 6936 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id EBBA523E48 for ; Sun, 26 Feb 2012 22:22:12 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id AFD71A1858F for ; Sun, 26 Feb 2012 22:22:12 +0000 (UTC) Received: by iabz7 with SMTP id z7so7435021iab.11 for ; Sun, 26 Feb 2012 14:22:12 -0800 (PST) Received: from mr.google.com ([10.50.87.201]) by 10.50.87.201 with SMTP id ba9mr14377920igb.30.1330294932183 (num_hops = 1); Sun, 26 Feb 2012 14:22:12 -0800 (PST) Received: by 10.50.87.201 with SMTP id ba9mr11565149igb.30.1330294932083; Sun, 26 Feb 2012 14:22:12 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.11.10 with SMTP id r10csp53510ibr; Sun, 26 Feb 2012 14:22:11 -0800 (PST) Received: by 10.180.85.105 with SMTP id g9mr10506478wiz.12.1330294930638; Sun, 26 Feb 2012 14:22:10 -0800 (PST) Received: from indium.canonical.com (indium.canonical.com. [91.189.90.7]) by mx.google.com with ESMTPS id o14si9605924weq.9.2012.02.26.14.22.09 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 26 Feb 2012 14:22:10 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) client-ip=91.189.90.7; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) smtp.mail=bounces@canonical.com Received: from ackee.canonical.com ([91.189.89.26]) by indium.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1S1mTp-00026b-HR for ; Sun, 26 Feb 2012 22:22:09 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id 7A5CFE0136 for ; Sun, 26 Feb 2012 22:22:09 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-dispatcher X-Launchpad-Branch: ~linaro-validation/lava-dispatcher/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 234 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-dispatcher/trunk] Rev 234: missing failok in android deployment Message-Id: <20120226222209.16293.5793.launchpad@ackee.canonical.com> Date: Sun, 26 Feb 2012 22:22:09 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="14860"; Instance="launchpad-lazr.conf" X-Launchpad-Hash: 5fa6945dc0dcf66d174e7404f14cc10d567f9222 X-Gm-Message-State: ALoCoQl5ho9Sc9yDVFolgrdixBkaLLM1zPTnr2imeOsG8f6JrhftjCaUU5+XBSi97DSuiMCITI7w ------------------------------------------------------------ revno: 234 committer: Michael Hudson-Doyle branch nick: trunk timestamp: Mon 2012-02-27 11:17:35 +1300 message: missing failok in android deployment modified: lava_dispatcher/client/master.py --- lp:lava-dispatcher https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk You are subscribed to branch lp:lava-dispatcher. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk/+edit-subscription === modified file 'lava_dispatcher/client/master.py' --- lava_dispatcher/client/master.py 2012-02-20 00:42:52 +0000 +++ lava_dispatcher/client/master.py 2012-02-26 22:17:35 +0000 @@ -101,7 +101,7 @@ def _deploy_linaro_android_testboot(session, boottbz2, pkgbz2=None): logging.info("Deploying test boot filesystem") - session.run('umount /dev/disk/by-label/testboot') + session.run('umount /dev/disk/by-label/testboot', failok=True) session.run('mkfs.vfat /dev/disk/by-label/testboot ' '-n testboot') session.run('udevadm trigger')