style guide fixes
Signed-off-by: Nick Chappell <nick@intronic.org>
This commit is contained in:
parent
3009c0be8d
commit
960be1d867
1 changed files with 5 additions and 5 deletions
|
@ -3,13 +3,13 @@
|
|||
# This defined type distributes .
|
||||
#
|
||||
# Parameters:
|
||||
# * $plugin_name = What Puppet knows this plugin resource as. This is used to create the
|
||||
# filenameon the client machine in the file resource. By default, it's
|
||||
# * $plugin_name = What Puppet knows this plugin resource as. This is used to create the
|
||||
# filenameon the client machine in the file resource. By default, it's
|
||||
# taken from the resource's name
|
||||
#
|
||||
# * $nrpe_plugin_libdir = The directory where the NRPE plugins themselves live
|
||||
#
|
||||
# * $source_file = The file that will get distributed to Icinga client machines. This can
|
||||
# * $source_file = The file that will get distributed to Icinga client machines. This can
|
||||
# be anywhere on your Puppet master. See http://docs.puppetlabs.com/references/3.stable/type.html#file-attribute-source
|
||||
# for more info on what formats of URLs you can use to specify which files
|
||||
# you want to distribute.
|
||||
|
@ -27,8 +27,8 @@ define icinga2::nrpe::plugin (
|
|||
file { "${nrpe_plugin_libdir}/${plugin_name}":
|
||||
owner => 'root',
|
||||
group => 'root',
|
||||
mode => '755',
|
||||
source => $source_file,
|
||||
mode => '0755',
|
||||
source => $source_file,
|
||||
require => Package[$icinga2::params::icinga2_client_packages],
|
||||
notify => Service[$icinga2::params::nrpe_daemon_name]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue