From eb61f8d36dc075ccde8ee131c98c1a356af77f2d Mon Sep 17 00:00:00 2001
From: Iustin Pop <iustin@google.com>
Date: Tue, 13 Jan 2009 13:25:58 +0000
Subject: [PATCH] burnin: move start_stop at the end

Traditionally the start/stop test was the last, so move it back to there
(added as last option in commit 854).

Reviewed-by: amishchenko
---
 tools/burnin | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tools/burnin b/tools/burnin
index bbde37ebb..eae59f5fa 100755
--- a/tools/burnin
+++ b/tools/burnin
@@ -659,12 +659,12 @@ class Burner(object):
       if opts.do_activate_disks:
         self.ActivateDisks()
 
-      if opts.do_startstop:
-        self.StopStart()
-
       if opts.rename:
         self.Rename()
 
+      if opts.do_startstop:
+        self.StopStart()
+
       has_err = False
     finally:
       if has_err:
-- 
GitLab