summaryrefslogtreecommitdiffstats
path: root/testing/puppet-fdio/manifests/honeycomb/service.pp
diff options
context:
space:
mode:
Diffstat (limited to 'testing/puppet-fdio/manifests/honeycomb/service.pp')
-rw-r--r--testing/puppet-fdio/manifests/honeycomb/service.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/puppet-fdio/manifests/honeycomb/service.pp b/testing/puppet-fdio/manifests/honeycomb/service.pp
new file mode 100644
index 0000000..58f7ae3
--- /dev/null
+++ b/testing/puppet-fdio/manifests/honeycomb/service.pp
@@ -0,0 +1,12 @@
+# == Class fdio::honeycomb::service
+#
+# Starts the honeycomb systemd or Upstart service.
+#
+class fdio::honeycomb::service {
+ service { 'honeycomb':
+ ensure => running,
+ enable => true,
+ hasstatus => true,
+ hasrestart => true,
+ }
+}