summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authorJonathan Thurman <jthurman@newrelic.com>2012-11-14 11:43:57 -0800
committerJonathan Thurman <jthurman@newrelic.com>2012-11-14 11:43:57 -0800
commitf14ab8a15c76c72c2a8cb92cdd8d79bae613e6ca (patch)
tree1cd26f3247ca0505dc8a3f5c4d9eea24b560d202 /manifests/init.pp
parente34a766c2d294a09af091935039058f160293c9c (diff)
Create spec tests for all classes/defines and perform most cleanup recommended by puppet-lint
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp16
1 files changed, 15 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 80db400..2f9b015 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -1,3 +1,17 @@
+# == Class: rsyslog
+#
+# Meta class to install rsyslog with a basic configuration. You probably want rsyslog::client or rsyslog::server
+#
+# === Parameters
+#
+# === Variables
+#
+# === Examples
+#
+# class { 'rsyslog': }
+#
class rsyslog {
- include rsyslog::params, rsyslog::install, rsyslog::config, rsyslog::service
+ class { 'rsyslog::install': }
+ class { 'rsyslog::config': }
+ class { 'rsyslog::service': }
}