Rename icingaweb2::config::monitoring' to icingaweb2::config::module'

refs #6842
This commit is contained in:
Alexander Klimov 2014-09-09 14:48:55 +02:00
parent 7e4feb748d
commit 1e511a0e3a
3 changed files with 7 additions and 7 deletions

View File

@ -0,0 +1,6 @@
define icingaweb2::config::module ($source, $module = 'monitoring', $replace = true) {
icingaweb2::config { "modules/${module}/${name}":
source => $source,
replace => $replace,
}
}

View File

@ -1,6 +0,0 @@
define icingaweb2::config::monitoring ($source, $replace = true) {
icingaweb2::config { "modules/monitoring/${name}":
source => $source,
replace => $replace,
}
}

View File

@ -56,5 +56,5 @@ class icingaweb2_dev {
replace => false,
}
icingaweb2::config::monitoring { [ 'backends', 'config', 'instances' ]: }
icingaweb2::config::module { [ 'backends', 'config', 'instances' ]: }
}