From 4aa036ab3757c42bfa70644258c6bddccfa50891 Mon Sep 17 00:00:00 2001
From: Iustin Pop <iustin@google.com>
Date: Mon, 14 Jan 2008 15:11:08 +0000
Subject: [PATCH] Allow burnin to take "-t plain" as an option

The burnin code deals with "-t plain", but the command line parser
doesn't allow that as an option. This patch fixes this issue.

Reviewed-by: ultrotter
---
 tools/burnin | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/burnin b/tools/burnin
index 2b5203c2c..c60e6a477 100755
--- a/tools/burnin
+++ b/tools/burnin
@@ -122,7 +122,7 @@ class Burner(object):
                       help="Skip instance failovers", action="store_false",
                       default=True)
     parser.add_option("-t", "--disk-template", dest="disk_template",
-                      choices=("remote_raid1", "drbd"),
+                      choices=("plain", "remote_raid1", "drbd"),
                       default="remote_raid1",
                       help="Template type for network mirroring (remote_raid1"
                       " or drbd) [remote_raid1]")
-- 
GitLab