diff options
author | varac <varacanero@zeromail.org> | 2014-02-12 18:14:19 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2014-02-12 18:14:19 +0100 |
commit | 060124b047ac44f9f54573a389fea6c5b6ab18ea (patch) | |
tree | 56de745400fd15bd9b7d7049841c098280c8c4f6 | |
parent | 7bfc884008d26cc7dca3b10e0aeef9073f55e5d3 (diff) |
renamed site_check_mk::client to site_check_mk::agent
-rw-r--r-- | puppet/modules/site_check_mk/manifests/agent.pp (renamed from puppet/modules/site_check_mk/manifests/client.pp) | 2 | ||||
-rw-r--r-- | puppet/modules/site_config/manifests/default.pp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/puppet/modules/site_check_mk/manifests/client.pp b/puppet/modules/site_check_mk/manifests/agent.pp index ae269168..bb0cb167 100644 --- a/puppet/modules/site_check_mk/manifests/client.pp +++ b/puppet/modules/site_check_mk/manifests/agent.pp @@ -1,4 +1,4 @@ -class site_check_mk::client { +class site_check_mk::agent { $ssh_hash = hiera('ssh') $pubkey = $ssh_hash['authorized_keys']['monitor']['key'] diff --git a/puppet/modules/site_config/manifests/default.pp b/puppet/modules/site_config/manifests/default.pp index 25f9b3f8..53cc60f6 100644 --- a/puppet/modules/site_config/manifests/default.pp +++ b/puppet/modules/site_config/manifests/default.pp @@ -87,5 +87,5 @@ class site_config::default { include ::site_custom } - include site_check_mk::client + include site_check_mk::agent } |