Added a skeleton defined type for service objects.
This commit is contained in:
parent
9ce8678b7b
commit
b6c832524b
1 changed files with 23 additions and 0 deletions
23
manifests/object/service.pp
Normal file
23
manifests/object/service.pp
Normal file
|
@ -0,0 +1,23 @@
|
|||
# == Defined type: icinga2::object::service
|
||||
#
|
||||
# This is a defined type for Icinga 2 service objects.
|
||||
# See the following Icinga 2 doc page for more info:
|
||||
# http://docs.icinga.org/icinga2/latest/doc/module/icinga2/chapter/configuring-icinga2#objecttype-service
|
||||
#
|
||||
# === Parameters
|
||||
#
|
||||
# See the inline comments.
|
||||
#
|
||||
|
||||
define icinga2::object::service () {
|
||||
|
||||
file {"${target_dir}/${target_file_name}":
|
||||
ensure => file,
|
||||
owner => $target_file_owner,
|
||||
group => $target_file_group,
|
||||
mode => $target_file_mode,
|
||||
content => template('icinga2/object_service.conf.erb'),
|
||||
notify => Service['icinga2'],
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue