diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/puppet/server/master.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/server/master.rb b/lib/puppet/server/master.rb index 1dca8777b..07a476efd 100644 --- a/lib/puppet/server/master.rb +++ b/lib/puppet/server/master.rb @@ -35,7 +35,6 @@ class Server end def initialize(hash = {}) - # FIXME this should all be s/:File/:Manifest/g or something # build our AST @file = hash[:File] || Puppet[:manifest] @@ -110,7 +109,8 @@ class Server client = facts["hostname"] clientip = facts["ipaddress"] end - Puppet.debug("Running interpreter") + + Puppet.notice("Compiling configuration for %s" % client) begin retobjects = @interpreter.run(client, facts) rescue Puppet::Error => detail |