diff options
Diffstat (limited to 'lib/puppet/client')
-rw-r--r-- | lib/puppet/client/master.rb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/puppet/client/master.rb b/lib/puppet/client/master.rb index 8ab251728..19d301f7d 100644 --- a/lib/puppet/client/master.rb +++ b/lib/puppet/client/master.rb @@ -564,7 +564,14 @@ class Puppet::Client::MasterClient < Puppet::Client end end ensure - Facter.loadfacts + if Facter.respond_to? :loadfacts + Facter.loadfacts + elsif Facter.respond_to? :load + Facter.load + else + raise Puppet::Error, + "You must upgrade your version of Facter to use centralized facts" + end end # Retrieve the plugins from the central server. We only have to load the |