diff options
| author | Luke Kanies <luke@madstop.com> | 2008-03-18 14:33:43 -0500 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2008-03-18 14:33:43 -0500 |
| commit | f62eec8a2e2e3fcd64d6a659c0b6c231cb1b0c9e (patch) | |
| tree | 870e8e0a992510f2321a25ea6774a050a3b47fe6 /lib | |
| parent | d0554db2396794391c7b9f54609e0aef37ac579d (diff) | |
| download | puppet-f62eec8a2e2e3fcd64d6a659c0b6c231cb1b0c9e.tar.gz puppet-f62eec8a2e2e3fcd64d6a659c0b6c231cb1b0c9e.tar.xz puppet-f62eec8a2e2e3fcd64d6a659c0b6c231cb1b0c9e.zip | |
updating resource references in the docs
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/puppet/metatype/metaparams.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/puppet/metatype/metaparams.rb b/lib/puppet/metatype/metaparams.rb index 9983c34d2..edd594114 100644 --- a/lib/puppet/metatype/metaparams.rb +++ b/lib/puppet/metatype/metaparams.rb @@ -375,7 +375,7 @@ class Puppet::Type } service { nagios: running => true, - subscribe => file[nagconf] + subscribe => File[nagconf] } } @@ -392,7 +392,7 @@ class Puppet::Type file { "/var/nagios/configuration": source => "...", recurse => true, - before => exec["nagios-rebuid"] + before => Exec["nagios-rebuid"] } exec { "nagios-rebuild": @@ -410,7 +410,7 @@ class Puppet::Type file { "/etc/sshd_config": source => "....", - notify => service[sshd] + notify => Service[sshd] } service { sshd: |
