blob: c9bac803ed170fb214fc45f8bd32a13b0805345c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
require 'puppet/node/facts'
require 'puppet/indirector/code'
class Puppet::Node::Facts::NetworkDevice < Puppet::Indirector::Code
desc "Retrieve facts from a network device."
# Look a device's facts up through the current device.
def find(request)
result = Puppet::Node::Facts.new(request.key, Puppet::Util::NetworkDevice.current.facts)
result.add_local_facts
result.stringify
result.downcase_if_necessary
result
end
def destroy(facts)
raise Puppet::DevError, "You cannot destroy facts in the code store; it is only used for getting facts from a remote device"
end
def save(facts)
raise Puppet::DevError, "You cannot save facts to the code store; it is only used for getting facts from a remote device"
end
end
|