diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2011-02-16 21:48:30 -0200 |
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2011-02-16 21:48:30 -0200 |
| commit | b275756ce4211e34e15db662ef6213e6c95432c7 (patch) | |
| tree | 156d1cae9cc632949caf75475f39ae9c237c2323 | |
| parent | 911337e91c6a34d9fca8ba9095b8c3864571cc5b (diff) | |
| download | puppet-puppet-b275756ce4211e34e15db662ef6213e6c95432c7.tar.gz puppet-puppet-b275756ce4211e34e15db662ef6213e6c95432c7.tar.bz2 | |
Selector fix
| -rw-r--r-- | manifests/puppetd.pp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/manifests/puppetd.pp b/manifests/puppetd.pp index 090aeaa..d38a0a5 100644 --- a/manifests/puppetd.pp +++ b/manifests/puppetd.pp @@ -32,8 +32,9 @@ class puppetd inherits puppet { # name of puppet agent section in config file $puppet_agent_section = $lsbdistcodename ? { - 'lenny','lucid' => 'puppetd', - default => 'agent', + 'lenny', => 'puppetd', + 'lucid' => 'puppetd', + default => 'agent', } # default config file for puppet nodes |
