summaryrefslogtreecommitdiff
path: root/manifests/agent.pp
diff options
context:
space:
mode:
authorKeith Burdis <keith@burdis.org>2013-02-08 14:54:52 +0000
committerKeith Burdis <keith@burdis.org>2013-02-08 14:54:52 +0000
commitbdb8d71a4cffd2111be32570f1babaaae081881a (patch)
tree0a775fd39e2ec0cbe2d1054a016ceb75855bfbaa /manifests/agent.pp
parent19f14ff538f9be66374498dba77fef3ba0ba9fff (diff)
puppet-lint to the rescue
Diffstat (limited to 'manifests/agent.pp')
-rw-r--r--manifests/agent.pp5
1 files changed, 3 insertions, 2 deletions
diff --git a/manifests/agent.pp b/manifests/agent.pp
index 8ed872a..dc13388 100644
--- a/manifests/agent.pp
+++ b/manifests/agent.pp
@@ -8,14 +8,15 @@ class check_mk::agent (
$version = undef,
$workspace = '/root/check_mk',
) {
- class check_mk::agent::install {
+ class { 'check_mk::agent::install':
version => $version,
filestore => $filestore,
workspace => $workspace,
}
- class check_mk::agent::config {
+ class { 'check_mk::agent::config':
ip_whitelist => $ip_whitelist,
port => $port,
+ server_dir => $server_dir,
use_cache => $use_cache,
user => $user,
require => Class['check_mk::agent::install'],