| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge branch '0.24.x' | Luke Kanies | 2009-02-13 | 2 | -0/+130 |
| |\ | | | | | | | | | | | | | | | | | | | Conflicts: lib/puppet/indirector/facts/facter.rb lib/puppet/provider/augeas/augeas.rb lib/puppet/util/filetype.rb spec/unit/indirector/facts/facter.rb spec/unit/provider/augeas/augeas.rb test/util/filetype.rb | ||||
| | * | Fixed #1831 - Added sprintf function | James Turnbull | 2009-02-14 | 1 | -0/+42 |
| | | | |||||
| | * | Fixed #1830 - Added regsubst function | James Turnbull | 2009-02-14 | 1 | -0/+88 |
| | | | |||||
| * | | Merge branch '0.24.x' | Luke Kanies | 2009-02-11 | 1 | -0/+51 |
| |\| | | | | | | | | | | | Conflicts: CHANGELOG spec/unit/type/file/selinux.rb | ||||
| | * | Fix #1691 - Realize fails with array of Resource References | Brice Figureau | 2009-02-11 | 1 | -0/+51 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following snippet: realize( File["/tmp/a","/tmp/b"] ) is parsed into: AST::Function @name=realize @arguments= AST::ASTArray @children = [ AST::ResourceReference @title= AST::ASTArray @children = [ String(/tmp/a), String(/tmp/b) ] ] When evaluated: ResourceReference gives -> [ File[/tmp/a], File[/tmp/b] ] which means the function arguments are: [[File[/tmp/a], File[/tmp/b]] after evaluating the @arguments ASTArray of AST::Functions. Then the collector complains that it can't find the resource because it is not supposed to work on non-flattened resource array. The fix is to flatten in the realize function (although it can be done more generally in the AST::Function evaluation) before the resources are given to the Collector. Signed-off-by: Brice Figureau <brice-puppet@daysofwonder.com> | ||||
| * | | Fix #1829 - Add puppet function versioncmp to compare versions | Brice Figureau | 2008-12-27 | 1 | -0/+29 |
| |/ | | | | Signed-off-by: Brice Figureau <brice-puppet@daysofwonder.com> | ||||
| * | Fix #1741 - Add inline_template function | Brice Figureau | 2008-11-29 | 1 | -0/+59 |
| | | |||||
| * | Fix #1741 - refactor TemplateWrapper, test for template function | Brice Figureau | 2008-11-29 | 1 | -0/+62 |
