blob: 562690026cf2590a498b7402f1852239a0e57763 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
require 'puppet/node'
require 'puppet/indirector'
# Manage a given node's facts. This either accepts facts and stores them, or
# returns facts for a given node.
class Puppet::Node::Facts
# Set up indirection, so that nodes can be looked for in
# the node sources.
extend Puppet::Indirector
# We want to expire any cached nodes if the facts are saved.
module NodeExpirer
def save(key, instance)
Puppet::Node.expire(instance.name)
super
end
end
indirects :facts, :terminus_setting => :facts_terminus, :extend => NodeExpirer
attr_accessor :name, :values
def add_local_facts
values["clientcert"] = Puppet.settings[:certname]
values["clientversion"] = Puppet.version.to_s
values["environment"] ||= Puppet.settings[:environment]
end
def initialize(name, values = {})
@name = name
@values = values
add_internal
end
def downcase_if_necessary
return unless Puppet.settings[:downcasefacts]
Puppet.warning "DEPRECATION NOTICE: Fact downcasing is deprecated; please disable (20080122)"
values.each do |fact, value|
values[fact] = value.downcase if value.is_a?(String)
end
end
# Convert all fact values into strings.
def stringify
values.each do |fact, value|
values[fact] = value.to_s
end
end
def ==(other)
return false unless self.name == other.name
strip_internal == other.send(:strip_internal)
end
def timestamp=(time)
self.values[:_timestamp] = time
end
def timestamp
self.values[:_timestamp]
end
private
# Add internal data to the facts for storage.
def add_internal
self.values[:_timestamp] = Time.now
end
# Strip out that internal data.
def strip_internal
newvals = values.dup
newvals.find_all { |name, value| name.to_s =~ /^_/ }.each { |name, value| newvals.delete(name) }
newvals
end
end
|