Revision 8d8d650c lib/cli.py

b/lib/cli.py
70 70
  "IALLOCATOR_OPT",
71 71
  "IGNORE_CONSIST_OPT",
72 72
  "IGNORE_FAILURES_OPT",
73
  "IGNORE_REMOVE_FAILURES_OPT",
73 74
  "IGNORE_SECONDARIES_OPT",
74 75
  "IGNORE_SIZE_OPT",
75 76
  "MAC_PREFIX_OPT",
......
101 102
  "OS_SIZE_OPT",
102 103
  "READD_OPT",
103 104
  "REBOOT_TYPE_OPT",
105
  "REMOVE_INSTANCE_OPT",
104 106
  "SECONDARY_IP_OPT",
105 107
  "SELECT_OS_OPT",
106 108
  "SEP_OPT",
......
684 686
                                 " configuration even if there are failures"
685 687
                                 " during the removal process")
686 688

  
689
IGNORE_REMOVE_FAILURES_OPT = cli_option("--ignore-remove-failures",
690
                                        dest="ignore_remove_failures",
691
                                        action="store_true", default=False,
692
                                        help="Remove the instance from the"
693
                                        " cluster configuration even if there"
694
                                        " are failures during the removal"
695
                                        " process")
696

  
697
REMOVE_INSTANCE_OPT = cli_option("--remove-instance", dest="remove_instance",
698
                                 action="store_true", default=False,
699
                                 help="Remove the instance from the cluster")
700

  
687 701
NEW_SECONDARY_OPT = cli_option("-n", "--new-secondary", dest="dst_node",
688 702
                               help="Specifies the new secondary node",
689 703
                               metavar="NODE", default=None,

Also available in: Unified diff