Skip to content
Snippets Groups Projects
Commit 4aa036ab authored by Iustin Pop's avatar Iustin Pop
Browse files

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
parent ba4b62cf
No related branches found
No related tags found
No related merge requests found
......@@ -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]")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment