Revision 460d22be lib/cli.py

b/lib/cli.py
82 82
  "NODE_PLACEMENT_OPT",
83 83
  "NOHDR_OPT",
84 84
  "NOIPCHECK_OPT",
85
  "NONAMECHECK_OPT",
85 86
  "NOLVM_STORAGE_OPT",
86 87
  "NOMODIFY_ETCHOSTS_OPT",
87 88
  "NOMODIFY_SSH_SETUP_OPT",
......
597 598
                           help="Don't check that the instance's IP"
598 599
                           " is alive")
599 600

  
601
NONAMECHECK_OPT = cli_option("--no-name-check", dest="name_check",
602
                             default=True, action="store_false",
603
                             help="Don't check that the instance's name"
604
                             " is resolvable")
605

  
600 606
NET_OPT = cli_option("--net",
601 607
                     help="NIC parameters", default=[],
602 608
                     dest="nics", action="append", type="identkeyval")
......
1467 1473
                                nics=nics,
1468 1474
                                pnode=pnode, snode=snode,
1469 1475
                                ip_check=opts.ip_check,
1476
                                name_check=opts.name_check,
1470 1477
                                wait_for_sync=opts.wait_for_sync,
1471 1478
                                file_storage_dir=opts.file_storage_dir,
1472 1479
                                file_driver=opts.file_driver,

Also available in: Unified diff