# File lib/aeolus_cli/command/config_parser.rb, line 51
      def parse(opts)
        begin
          opts.parse(@args)
        rescue OptionParser::InvalidOption => io
          puts "Warning, " + io.message + "\n\tSee `aeolus-image " + @command + " -h` for usage information."
          exit(1)
        rescue OptionParser::MissingArgument => e
          puts "Warning, #{e.message}" + "\n\tSee `aeolus-image " + @command + " -h` for usage information."
          exit(1)
        end
      end