diff options
| author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-09-03 04:13:00 +0000 |
|---|---|---|
| committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-09-03 04:13:00 +0000 |
| commit | 37330340833ddca9e542804fe64755ab8feb9eeb (patch) | |
| tree | db9974c675c3b73cae56a253386f716e83bc8b6f /lib/puppet/server | |
| parent | a88799323a5779f002b65800ebb9d768bea27f05 (diff) | |
| download | puppet-37330340833ddca9e542804fe64755ab8feb9eeb.tar.gz puppet-37330340833ddca9e542804fe64755ab8feb9eeb.tar.xz puppet-37330340833ddca9e542804fe64755ab8feb9eeb.zip | |
Renaming parsedfile to loadedfile, which makes much more sense and reduces some naming conflicts
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1544 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/server')
| -rw-r--r-- | lib/puppet/server/authconfig.rb | 4 | ||||
| -rwxr-xr-x | lib/puppet/server/fileserver.rb | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/puppet/server/authconfig.rb b/lib/puppet/server/authconfig.rb index 951a21229..073ff9516 100644 --- a/lib/puppet/server/authconfig.rb +++ b/lib/puppet/server/authconfig.rb @@ -1,4 +1,4 @@ -require 'puppet/parsedfile' +require 'puppet/loadedfile' require 'puppet/server/rights' module Puppet @@ -6,7 +6,7 @@ class Server class ConfigurationError < Puppet::Error; end -class AuthConfig < Puppet::ParsedFile +class AuthConfig < Puppet::LoadedFile Puppet.config.setdefaults(:puppet, :authconfig => [ "$confdir/namespaceauth.conf", "The configuration file that defines the rights to the different diff --git a/lib/puppet/server/fileserver.rb b/lib/puppet/server/fileserver.rb index aa9b8800a..49af26c54 100755 --- a/lib/puppet/server/fileserver.rb +++ b/lib/puppet/server/fileserver.rb @@ -104,7 +104,7 @@ class Server if hash[:Config] == false @noreadconfig = true else - @config = Puppet::ParsedFile.new( + @config = Puppet::LoadedFile.new( hash[:Config] || Puppet[:fileserverconfig] ) @noreadconfig = false |
