diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-12-10 00:45:50 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-12-10 00:45:50 +0000 |
commit | 2d43580c50b6bb23ce1c938af276c69af750beb9 (patch) | |
tree | 1f2fd41136c590a3c9ebc4eb25ebf7a5483219ae /lib/puppet/util | |
parent | d3b76d6e0d8891c8109d559f61363cd11c246529 (diff) | |
download | puppet-2d43580c50b6bb23ce1c938af276c69af750beb9.tar.gz puppet-2d43580c50b6bb23ce1c938af276c69af750beb9.tar.xz puppet-2d43580c50b6bb23ce1c938af276c69af750beb9.zip |
Most of the graph handling is now done, and all of the recursive types (basically just file, tidy, and component) now correctly use the generation mechanisms in the transactions, instead of sticking them in their @children array. Now I just need to go through the rest of the tests and make sure everything passes.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1901 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/util')
-rwxr-xr-x | lib/puppet/util/posix.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/util/posix.rb b/lib/puppet/util/posix.rb index 75726b3da..01c3e25aa 100755 --- a/lib/puppet/util/posix.rb +++ b/lib/puppet/util/posix.rb @@ -12,7 +12,7 @@ module Puppet::Util::POSIX else method = (prefix + "nam").intern end - + begin return Etc.send(method, id).send(field) rescue ArgumentError => detail |