summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2008-03-16 17:21:27 -0500
committerLuke Kanies <luke@madstop.com>2008-03-16 17:21:27 -0500
commit80f69ce86d245b45aeb93964aed9b3daca7d0d80 (patch)
treece9208d6754443fc4ff2ac1d6c735041ece6f48e /lib
parent8b2936861378f652b9f6b29accf3985f58b7356e (diff)
parent388cf7c3df7ce26e953949ed6fe63d76cbbb3691 (diff)
downloadpuppet-80f69ce86d245b45aeb93964aed9b3daca7d0d80.tar.gz
puppet-80f69ce86d245b45aeb93964aed9b3daca7d0d80.tar.xz
puppet-80f69ce86d245b45aeb93964aed9b3daca7d0d80.zip
Merge commit 'johnf/0.24.x' into 0.24.x
Diffstat (limited to 'lib')
-rw-r--r--lib/puppet/defaults.rb4
-rw-r--r--lib/puppet/network/handler/master.rb2
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/puppet/defaults.rb b/lib/puppet/defaults.rb
index e0225803a..407a47d07 100644
--- a/lib/puppet/defaults.rb
+++ b/lib/puppet/defaults.rb
@@ -327,8 +327,8 @@ module Puppet
:masterport => [8140, "Which port puppetmasterd listens on."],
:parseonly => [false, "Just check the syntax of the manifests."],
:node_name => ["cert", "How the puppetmaster determines the client's identity
- and sets the 'hostname' fact for use in the manifest, in particular
- for determining which 'node' statement applies to the client.
+ and sets the 'hostname', 'fqdn' and 'domain' facts for use in the manifest,
+ in particular for determining which 'node' statement applies to the client.
Possible values are 'cert' (use the subject's CN in the client's
certificate) and 'facter' (use the hostname that the client
reported in its facts)"],
diff --git a/lib/puppet/network/handler/master.rb b/lib/puppet/network/handler/master.rb
index 8d84fe8b8..3e004046e 100644
--- a/lib/puppet/network/handler/master.rb
+++ b/lib/puppet/network/handler/master.rb
@@ -81,6 +81,8 @@ class Puppet::Network::Handler
clientip = facts["ipaddress"]
if Puppet[:node_name] == 'cert'
if name
+ facts["fqdn"] = client
+ facts["hostname"], facts["domain"] = client.split('.', 2)
client = name
end
if ip