Override these, because yaml doesn’t want to convert our self-referential objects. This is hackish, but eh.
# File lib/puppet/indirector/catalog/yaml.rb, line 11 def from_yaml(text) if config = YAML.load(text) return config end end
# File lib/puppet/indirector/catalog/yaml.rb, line 17 def to_yaml(config) # We can't yaml-dump classes. #config.edgelist_class = nil YAML.dump(config) end