# File lib/aeolus_image/command/import_command.rb, line 18
      def initialize(opts={}, logger=nil)
        super(opts, logger)
        default = {
          :image => '',
          :build => '',
          :id => '',
          :description => '<image><name>' + @options[:id] + '</name></image>',
          :target => '',
          :provider => ''
        }
        @options = default.merge(@options)
        @console = ImageFactoryConsole.new()
        @console.start
      end