diff options
author | am <am@d66ca3ae-40d7-4aa7-90d4-87d79ca94279> | 2008-01-31 16:18:21 +0000 |
---|---|---|
committer | am <am@d66ca3ae-40d7-4aa7-90d4-87d79ca94279> | 2008-01-31 16:18:21 +0000 |
commit | 62f6d972b6ca769bf7b75e78615bc0f3ffbbb081 (patch) | |
tree | dd6684435b3c44526fd0a46fb35bd36db174229a /manifests | |
parent | f637dc37d96a1715634734c5ef9d7d5ecd13a447 (diff) |
tinydns munin modul für immer1-4
git-svn-id: https://svn/ipuppet/trunk/modules/munin@635 d66ca3ae-40d7-4aa7-90d4-87d79ca94279
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/plugin.pp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/manifests/plugin.pp b/manifests/plugin.pp index f5919e1..b8a28aa 100644 --- a/manifests/plugin.pp +++ b/manifests/plugin.pp @@ -242,3 +242,16 @@ class munin::plugins::dom0 inherits munin::plugins::base { } } +class munin::plugins::djbdns inherits munin::plugins::base { + file { + [ "$script_path_default/tinydns" ]: + source => "puppet://$servername/munin/plugins/tinydns", + ensure => file, + mode => 0755, owner => root, group => 0; + } + plugin { + [ tinydns ]: + ensure => present; + } +} + |