summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authorKeith Burdis <keith@burdis.org>2013-02-08 15:57:57 +0000
committerKeith Burdis <keith@burdis.org>2013-02-08 15:57:57 +0000
commit32297aace9a2f8ef1117ea233335b93f8fb0aee2 (patch)
tree2133501aa97fb1b7b22e3998bd564665cfba6fe2 /manifests/init.pp
parentbdb8d71a4cffd2111be32570f1babaaae081881a (diff)
Create the site in the install class to avoid having to specify lots of dependencies. Fixes after testing.
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 31d9fd7..2686f55 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -1,12 +1,13 @@
class check_mk (
$filestore = undef,
$package = 'omd',
- $site = 'omd',
+ $site = 'monitoring',
$workspace = '/root/check_mk',
) {
class { 'check_mk::install':
filestore => $filestore,
package => $package,
+ site => $site,
workspace => $workspace,
}
class { 'check_mk::config':