# File lib/puppet/provider/service/init.rb, line 73 73: def paths 74: @paths ||= @resource[:path].find_all do |path| 75: if File.directory?(path) 76: true 77: else 78: if File.exist?(path) and ! File.directory?(path) 79: self.debug "Search path #{path} is not a directory" 80: else 81: self.debug "Search path #{path} does not exist" 82: end 83: false 84: end 85: end 86: end