| Server IP : 77.68.64.21 / Your IP : 216.73.217.59 Web Server : Apache System : Linux hp3-wp-1011352.hostingp3.local 3.10.0-1160.144.1.el7.tuxcare.els9.x86_64 #1 SMP Fri Jul 10 17:06:31 UTC 2026 x86_64 User : csh2516497 ( 2094697) PHP Version : 8.3.30 Disable Function : shell_exec,exec,system,popen,set_time_limit MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/ruby/vendor_ruby/puppet/parser/ |
Upload File : |
class Puppet::Parser::Relationship
attr_accessor :source, :target, :type
PARAM_MAP = {:relationship => :before, :subscription => :notify}
def arrayify(resources)
case resources
when Puppet::Parser::Collector
resources.collected.values
when Array
resources
else
[resources]
end
end
def evaluate(catalog)
arrayify(source).each do |s|
arrayify(target).each do |t|
mk_relationship(s, t, catalog)
end
end
end
def initialize(source, target, type)
@source, @target, @type = source, target, type
end
def param_name
PARAM_MAP[type] || raise(ArgumentError, "Invalid relationship type #{type}")
end
def mk_relationship(source, target, catalog)
# REVISIT: In Ruby 1.8 we applied `to_s` to source and target, rather than
# `join` without an argument. In 1.9 the behaviour of Array#to_s changed,
# and it gives a different representation than just concat the stringified
# elements.
#
# This restores the behaviour, but doesn't address the underlying question
# of what would happen when more than one item was passed in that array.
# (Hint: this will not end well.)
#
# See http://projects.puppetlabs.com/issues/12076 for the ticket tracking
# the fact that we should dig out the sane version of this behaviour, then
# implement it - where we don't risk breaking a stable release series.
# --daniel 2012-01-21
source = source.is_a?(Array) ? source.join : source.to_s
target = target.is_a?(Array) ? target.join : target.to_s
unless source_resource = catalog.resource(source)
raise ArgumentError, "Could not find resource '#{source}' for relationship on '#{target}'"
end
unless catalog.resource(target)
raise ArgumentError, "Could not find resource '#{target}' for relationship from '#{source}'"
end
Puppet.debug "Adding relationship from #{source} to #{target} with '#{param_name}'"
if source_resource[param_name].class != Array
source_resource[param_name] = [source_resource[param_name]].compact
end
source_resource[param_name] << target
end
end