diff options
| author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-12-23 06:26:39 +0000 |
|---|---|---|
| committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-12-23 06:26:39 +0000 |
| commit | 2742995c0396beb9de9598b43ecde6b20b203d32 (patch) | |
| tree | c188fc3991e450a98dde09394d39ad48cdfaa851 /lib/puppet/parser/resource | |
| parent | 85b19c4815c4e605bcfa561298786ca3c1f68de0 (diff) | |
| download | puppet-2742995c0396beb9de9598b43ecde6b20b203d32.tar.gz puppet-2742995c0396beb9de9598b43ecde6b20b203d32.tar.xz puppet-2742995c0396beb9de9598b43ecde6b20b203d32.zip | |
Fixing #343. Collections and definition evaluation both now happen on every iterative evaluation, with collections being evaluated first. This way collections can find resources that either are inside defined types or are the types themselves.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1967 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/parser/resource')
| -rw-r--r-- | lib/puppet/parser/resource/reference.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/parser/resource/reference.rb b/lib/puppet/parser/resource/reference.rb index f71b3719f..9557d8c54 100644 --- a/lib/puppet/parser/resource/reference.rb +++ b/lib/puppet/parser/resource/reference.rb @@ -50,7 +50,7 @@ class Puppet::Parser::Resource::Reference def to_s unless defined? @namestring - @namestring = "%s[%s]" % [type, title] + @namestring = "%s[%s]" % [type.capitalize, title] end @namestring end |
