diff options
Diffstat (limited to 'testing/puppet-fdio/manifests/honeycomb/service.pp')
-rw-r--r-- | testing/puppet-fdio/manifests/honeycomb/service.pp | 12 |
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, + } +} |