Revision 93f1e606 lib/cli.py

b/lib/cli.py
1725 1725

  
1726 1726
INSTANCE_COMMUNICATION_OPT = \
1727 1727
    cli_option("-c", "--communication",
1728
               default=False,
1729 1728
               dest="instance_communication",
1730 1729
               help=constants.INSTANCE_COMMUNICATION_DOC,
1731 1730
               type="bool")
......
2776 2775
    no_install = opts.no_install
2777 2776
    identify_defaults = False
2778 2777
    compress = constants.IEC_NONE
2779
    instance_communication = opts.instance_communication
2778
    if opts.instance_communication is None:
2779
      instance_communication = False
2780
    else:
2781
      instance_communication = opts.instance_communication
2780 2782
  elif mode == constants.INSTANCE_IMPORT:
2781 2783
    start = False
2782 2784
    os_type = None

Also available in: Unified diff