diff options
author | Jesse Wolfe <jes5199@gmail.com> | 2010-03-30 16:33:44 -0700 |
---|---|---|
committer | test branch <puppet-dev@googlegroups.com> | 2010-02-17 06:50:53 -0800 |
commit | 8f9fc30bb3b992322a553aa7dc0c504af5e44250 (patch) | |
tree | 858c75522bc018ff65ae5ca5e0e76158ffc433dc /lib/puppet/application/filebucket.rb | |
parent | 23ccefe0e8b51af19a0283c0d8eb3de09b6e4c31 (diff) | |
download | puppet-8f9fc30bb3b992322a553aa7dc0c504af5e44250.tar.gz puppet-8f9fc30bb3b992322a553aa7dc0c504af5e44250.tar.xz puppet-8f9fc30bb3b992322a553aa7dc0c504af5e44250.zip |
REST FileBucket: REST barfs on relative paths
Force FileBucket to always send absolute (real) paths
Diffstat (limited to 'lib/puppet/application/filebucket.rb')
-rw-r--r-- | lib/puppet/application/filebucket.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/puppet/application/filebucket.rb b/lib/puppet/application/filebucket.rb index 09aaf2b5d..ed67009aa 100644 --- a/lib/puppet/application/filebucket.rb +++ b/lib/puppet/application/filebucket.rb @@ -72,7 +72,6 @@ Puppet::Application.new(:filebucket) do path = options[:bucket] || Puppet[:bucketdir] @client = Puppet::FileBucket::Dipper.new(:Path => path) else - require 'puppet/network/handler' @client = Puppet::FileBucket::Dipper.new(:Server => Puppet[:server]) end rescue => detail |