diff options
| author | Luke Kanies <luke@madstop.com> | 2007-08-27 17:38:39 -0500 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2007-08-27 17:38:39 -0500 |
| commit | 2625eb1db70361f9f14710ccc36090374ee282fb (patch) | |
| tree | 7fa8a8f8fe2d813c4b22a035159b466048715bb2 /lib/puppet/network/handler | |
| parent | 1de5ae0da0d336f1b96ceaac5aca1dfed4169460 (diff) | |
| download | puppet-2625eb1db70361f9f14710ccc36090374ee282fb.tar.gz puppet-2625eb1db70361f9f14710ccc36090374ee282fb.tar.xz puppet-2625eb1db70361f9f14710ccc36090374ee282fb.zip | |
Making a couple of small bugfixes in the configuration subsystem
Diffstat (limited to 'lib/puppet/network/handler')
| -rw-r--r-- | lib/puppet/network/handler/configuration.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/puppet/network/handler/configuration.rb b/lib/puppet/network/handler/configuration.rb index b2b16d022..1dbb16370 100644 --- a/lib/puppet/network/handler/configuration.rb +++ b/lib/puppet/network/handler/configuration.rb @@ -22,6 +22,11 @@ class Puppet::Network::Handler # Compile a node's configuration. def configuration(key, client = nil, clientip = nil) + # If we want to use the cert name as our key + if Puppet[:node_name] == 'cert' and client + key = client + end + # Note that this is reasonable, because either their node source should actually # know about the node, or they should be using the ``none`` node source, which # will always return data. |
