From c2c8a080c7c09ce1bcc749ac0afd78422a6fc571 Mon Sep 17 00:00:00 2001 From: Sandon Van Ness Date: Thu, 25 Jul 2013 15:33:11 -0700 Subject: [PATCH] Added --os-type argument to run.py Because for some reason it was never there before? Signed-off-by: Sandon Van Ness --- teuthology/run.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/teuthology/run.py b/teuthology/run.py index 713272fa4e..21565aa19d 100644 --- a/teuthology/run.py +++ b/teuthology/run.py @@ -62,6 +62,11 @@ def parse_args(): default=None, help='Type of machine to lock/run tests on.', ) + parser.add_argument( + '--os-type', + default='ubuntu', + help='Distro/OS of machine to run test on.', + ) parser.add_argument( '--block', action='store_true', -- 2.39.5