summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-02-28 17:09:01 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-02-28 17:09:01 +0000
commit65ed766a6118e1ceac7f9abbabfa44a7a46cf662 (patch)
tree192f22cb616136c078c0a17f826880661b46a046 /lib
parent32cbc596422de6fa82572b4cb2232c4aa417012b (diff)
downloadpuppet-65ed766a6118e1ceac7f9abbabfa44a7a46cf662.tar.gz
puppet-65ed766a6118e1ceac7f9abbabfa44a7a46cf662.tar.xz
puppet-65ed766a6118e1ceac7f9abbabfa44a7a46cf662.zip
adding a connect log to the master server
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@959 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib')
-rw-r--r--lib/puppet/server/master.rb4
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