diff options
author | mh <mh@immerda.ch> | 2008-01-31 00:51:30 +0000 |
---|---|---|
committer | mh <mh@immerda.ch> | 2008-01-31 00:51:30 +0000 |
commit | c9ad61c6de6abfeb104ea5410392c5baaab689fa (patch) | |
tree | 14af5d2a81efde01db50360c1c34b57d3d23e510 /manifests | |
parent | 232c0e8084cc9d7a5e304e34c8512da83c7c50c7 (diff) |
fixed typo
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 594fe36..36ff48b 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -95,17 +95,17 @@ define puppet::masterconfig( $real_puppetsource = $puppetsource ? { - '' => 'puppet/master/puppet.conf' + '' => 'puppet/master/puppet.conf', default => $source, } $real_fileserversource = $fileserversource ? { - '' => 'puppet/master/fileserver.conf' + '' => 'puppet/master/fileserver.conf', default => $source, } file { 'pupet_config': - path => '/etc/puppet/puppet.conf' + path => '/etc/puppet/puppet.conf', owner => root, group => 0, mode => 600, @@ -113,7 +113,7 @@ define puppet::masterconfig( notify => [Service[puppet],Service[puppetmaster], } file { 'fileserver_config': - path => '/etc/puppet/fileserver.conf' + path => '/etc/puppet/fileserver.conf', owner => root, group => 0, mode => 600, |