Unify the “--net” option
authorIustin Pop <iustin@google.com>
Thu, 17 Sep 2009 10:36:54 +0000 (12:36 +0200)
committerIustin Pop <iustin@google.com>
Fri, 18 Sep 2009 10:53:50 +0000 (12:53 +0200)
Signed-off-by: Iustin Pop <iustin@google.com>
Reviewed-by: Michael Hanselmann <hansmi@google.com>

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

index c81bf54..7d69b70 100644 (file)
@@ -57,6 +57,7 @@ __all__ = [
   "HYPERVISOR_OPT",
   "IALLOCATOR_OPT",
   "FORCE_OPT",
+  "NET_OPT",
   "NOHDR_OPT",
   "NOIPCHECK_OPT",
   "NONICS_OPT",
@@ -539,6 +540,9 @@ NOIPCHECK_OPT = cli_option("--no-ip-check", dest="ip_check", default=True,
                            help="Don't check that the instance's IP"
                            " is alive")
 
+NET_OPT = cli_option("--net",
+                     help="NIC parameters", default=[],
+                     dest="nics", action="append", type="identkeyval")
 
 
 def _ParseArgs(argv, commands, aliases):
index a1bb6e6..cdcddac 100755 (executable)
@@ -225,10 +225,7 @@ import_opts = [
              " single-disk configuration, when not using the --disk option,"
              " in MiB unless a suffix is used",
              default=None, type="unit", metavar="<size>"),
-  cli_option("--net", help="NIC information",
-             default=[], dest="nics",
-             action="append",
-             type="identkeyval"),
+  NET_OPT,
   NONICS_OPT,
   NWSYNC_OPT,
   cli_option("--src-node", dest="src_node", help="Source node",
index d3c3895..b042f0f 100755 (executable)
@@ -1378,10 +1378,7 @@ add_opts = [
              default=[], dest="disks",
              action="append",
              type="identkeyval"),
-  cli_option("--net", help="NIC information",
-             default=[], dest="nics",
-             action="append",
-             type="identkeyval"),
+  NET_OPT,
   NONICS_OPT,
   NWSYNC_OPT,
   cli_option("--no-start", dest="start", default=True,
@@ -1535,10 +1532,7 @@ commands = {
                          default=[], dest="disks",
                          action="append",
                          type="identkeyval"),
-              cli_option("--net", help="NIC changes",
-                         default=[], dest="nics",
-                         action="append",
-                         type="identkeyval"),
+              NET_OPT,
               SUBMIT_OPT,
               ],
              "<instance>", "Alters the parameters of an instance"),