Unify the “--disk-template” option
authorIustin Pop <iustin@google.com>
Thu, 17 Sep 2009 08:57:46 +0000 (10:57 +0200)
committerIustin Pop <iustin@google.com>
Fri, 18 Sep 2009 10:53:49 +0000 (12:53 +0200)
Signed-off-by: Iustin Pop <iustin@google.com>
Reviewed-by: Guido Trotter <ultrotter@google.com>

lib/cli.py
scripts/gnt-backup
scripts/gnt-debug
scripts/gnt-instance

index bbe5158..3b1156c 100644 (file)
@@ -47,6 +47,7 @@ __all__ = [
   "CONFIRM_OPT",
   "DEBUG_OPT",
   "DEBUG_SIMERR_OPT",
+  "DISK_TEMPLATE_OPT",
   "FIELDS_OPT",
   "FORCE_OPT",
   "NOHDR_OPT",
@@ -475,6 +476,12 @@ NWSYNC_OPT = cli_option("--no-wait-for-sync", dest="wait_for_sync",
                         default=True, action="store_false",
                         help="Don't wait for sync (DANGEROUS!)")
 
+DISK_TEMPLATE_OPT = cli_option("-t", "--disk-template", dest="disk_template",
+                               help="Custom disk setup (diskless, file,"
+                               " plain or drbd)",
+                               default=None, metavar="TEMPL",
+                               choices=list(constants.DISK_TEMPLATES))
+
 
 def _ParseArgs(argv, commands, aliases):
   """Parser for the command line arguments.
index a45256f..8ee9b67 100755 (executable)
@@ -218,10 +218,7 @@ import_opts = [
   cli_option("-B", "--backend", dest="beparams",
              type="keyval", default={},
              help="Backend parameters"),
-  cli_option("-t", "--disk-template", dest="disk_template",
-             help="Custom disk setup (diskless, file, plain, drbd)",
-             default=None, metavar="TEMPL",
-             choices=list(constants.DISK_TEMPLATES)),
+  DISK_TEMPLATE_OPT,
   cli_option("--disk", help="Disk information",
              default=[], dest="disks",
              action="append",
index b582c5e..80ea6c1 100755 (executable)
@@ -198,9 +198,7 @@ commands = {
                             help="Memory size for the instance (MiB)"),
                  cli_option("--disks", default="4096,4096",
                             help="Comma separated list of disk sizes (MiB)"),
-                 cli_option("-t", "--disk-template", default="drbd",
-                            help="Select the disk template",
-                            choices=list(constants.DISK_TEMPLATES)),
+                 DISK_TEMPLATE_OPT,
                  cli_option("--nics", default="00:11:22:33:44:55",
                             help="Comma separated list of nics, each nic"
                             " definition is of form mac/ip/bridge, if"
index 256b39a..05b2a45 100755 (executable)
@@ -1375,10 +1375,7 @@ add_opts = [
   cli_option("-B", "--backend", dest="beparams",
              type="keyval", default={},
              help="Backend parameters"),
-  cli_option("-t", "--disk-template", dest="disk_template",
-             help="Custom disk setup (diskless, file, plain or drbd)",
-             default=None, metavar="TEMPL",
-             choices=list(constants.DISK_TEMPLATES)),
+  DISK_TEMPLATE_OPT,
   cli_option("-s", "--os-size", dest="sd_size", help="Disk size for a"
              " single-disk configuration, when not using the --disk option,"
              " in MiB unless a suffix is used",