diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-05-09 14:43:06 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-05-09 14:43:06 +0000 |
commit | 2fa529ecb6422f809b38ff5d12ecd3023ebcb90f (patch) | |
tree | 7cc7bed73481469cb5f1be2f863dd59d4db9afe1 /lib/puppet/network/handler/fileserver.rb | |
parent | fbfaa0f8b54f9da09796150b7d6cd1856aabe204 (diff) | |
download | puppet-2fa529ecb6422f809b38ff5d12ecd3023ebcb90f.tar.gz puppet-2fa529ecb6422f809b38ff5d12ecd3023ebcb90f.tar.xz puppet-2fa529ecb6422f809b38ff5d12ecd3023ebcb90f.zip |
Fixing the ability to fail correctly in the fileserver -- a constant was not defined correctly for it
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2494 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/network/handler/fileserver.rb')
-rwxr-xr-x | lib/puppet/network/handler/fileserver.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/puppet/network/handler/fileserver.rb b/lib/puppet/network/handler/fileserver.rb index 5ba507b16..7726019ba 100755 --- a/lib/puppet/network/handler/fileserver.rb +++ b/lib/puppet/network/handler/fileserver.rb @@ -5,6 +5,7 @@ require 'cgi' require 'delegate' class Puppet::Network::Handler + AuthStoreError = Puppet::AuthStoreError class FileServerError < Puppet::Error; end class FileServer < Handler desc "The interface to Puppet's fileserving abilities." |