summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorMatt Taggart <taggart@riseup.net>2014-04-24 16:05:13 -0700
committerMatt Taggart <taggart@riseup.net>2015-04-16 21:08:37 +0000
commit6fb6618eba1a027a8cc3ccb4b086ec05240b679e (patch)
tree4c54ca1f9526bb9ec206d4c3f5f73275169fcd37 /manifests
parentc1eda813fbe51ab3476d4e5e2a1c996230339cef (diff)
add some comments about how these classes should be checking if the ssh method is being used before doing xinetd related things
Diffstat (limited to 'manifests')
-rw-r--r--manifests/install_tarball.pp1
-rw-r--r--manifests/service.pp1
2 files changed, 2 insertions, 0 deletions
diff --git a/manifests/install_tarball.pp b/manifests/install_tarball.pp
index 4a0af23..af40a26 100644
--- a/manifests/install_tarball.pp
+++ b/manifests/install_tarball.pp
@@ -31,6 +31,7 @@ class check_mk::install_tarball (
ensure => present,
require => Package['nagios'],
}
+ # FIXME: this should get and check $use_ssh before requiring xinetd
package { [ 'xinetd', 'mod_python', 'make', 'gcc-c++', 'tar', 'gzip' ]:
ensure => present,
}
diff --git a/manifests/service.pp b/manifests/service.pp
index da50e4e..7e3a153 100644
--- a/manifests/service.pp
+++ b/manifests/service.pp
@@ -6,6 +6,7 @@ class check_mk::service {
enable => true,
}
}
+ # FIXME: this should get and check $use_ssh before doing this
if ! defined(Service[xinetd]) {
service { 'xinetd':
ensure => 'running',