# File lib/puppet/indirector/exec.rb, line 6
 6:     def find(request)
 7:         # Run the command.
 8:         unless output = query(request.key)
 9:             return nil
10:         end
11: 
12:         # Translate the output to ruby.
13:         return output
14:     end