Revision b954f097 lib/cli.py

b/lib/cli.py
262 262
  "ArgNetwork",
263 263
  "ArgNode",
264 264
  "ArgOs",
265
  "ArgExtStorage",
265 266
  "ArgSuggest",
266 267
  "ArgUnknown",
267 268
  "OPT_COMPL_INST_ADD_NODES",
......
272 273
  "OPT_COMPL_ONE_NODEGROUP",
273 274
  "OPT_COMPL_ONE_NETWORK",
274 275
  "OPT_COMPL_ONE_OS",
276
  "OPT_COMPL_ONE_EXTSTORAGE",
275 277
  "cli_option",
276 278
  "SplitNodeOption",
277 279
  "CalculateOSNames",
......
422 424
  """
423 425

  
424 426

  
427
class ArgExtStorage(_Argument):
428
  """ExtStorage argument.
429

  
430
  """
431

  
432

  
425 433
ARGS_NONE = []
426 434
ARGS_MANY_INSTANCES = [ArgInstance()]
427 435
ARGS_MANY_NETWORKS = [ArgNetwork()]
......
672 680
 OPT_COMPL_ONE_NODE,
673 681
 OPT_COMPL_ONE_INSTANCE,
674 682
 OPT_COMPL_ONE_OS,
683
 OPT_COMPL_ONE_EXTSTORAGE,
675 684
 OPT_COMPL_ONE_IALLOCATOR,
676 685
 OPT_COMPL_ONE_NETWORK,
677 686
 OPT_COMPL_INST_ADD_NODES,
678
 OPT_COMPL_ONE_NODEGROUP) = range(100, 108)
687
 OPT_COMPL_ONE_NODEGROUP) = range(100, 109)
679 688

  
680 689
OPT_COMPL_ALL = compat.UniqueFrozenset([
681 690
  OPT_COMPL_MANY_NODES,
682 691
  OPT_COMPL_ONE_NODE,
683 692
  OPT_COMPL_ONE_INSTANCE,
684 693
  OPT_COMPL_ONE_OS,
694
  OPT_COMPL_ONE_EXTSTORAGE,
685 695
  OPT_COMPL_ONE_IALLOCATOR,
686 696
  OPT_COMPL_ONE_NETWORK,
687 697
  OPT_COMPL_INST_ADD_NODES,

Also available in: Unified diff