summaryrefslogtreecommitdiff
path: root/manifests/logging.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/logging.pp')
-rw-r--r--manifests/logging.pp16
1 files changed, 16 insertions, 0 deletions
diff --git a/manifests/logging.pp b/manifests/logging.pp
new file mode 100644
index 0000000..50ec5ab
--- /dev/null
+++ b/manifests/logging.pp
@@ -0,0 +1,16 @@
+class profiles::logging {
+ # arch
+ # ensure_packages(['syslog-ng'])
+
+ # service { 'syslog-ng@default':
+ # }
+
+ file { '/etc/rsyslog.d':
+ ensure => directory,
+ }
+
+ file { '/etc/rsyslog.d/graylog.conf':
+ content => "*.* @mithlond.adrift.space\n",
+ }
+
+}