# File lib/aeolus_cli/command/config_parser.rb, line 322
      def delete
        if @options[:subcommand].nil?
          # TODO: Pull out Print Usage into seporate method, and print
          puts "Could not find subcommand for delete, run `./aeolus-image --help` for usage instructions"
          exit(1)
        else
          delete_command = DeleteCommand.new(@options)
          delete_command.send(@options[:subcommand])
        end
      end