0e744a792425e8e0c6b5819d93e5eb6d3ff71133
[integration/packaging/puppet-opendaylight.git] / manifests / service.pp
1 # == Class opendaylight::service
2 #
3 # This class is meant to be called from opendaylight.
4 # It ensure the service is running.
5 #
6 class opendaylight::service {
7   service { 'opendaylight':
8     ensure     => running,
9     enable     => true,
10     hasstatus  => true,
11     # TODO: Confirm this is actually supported by ODL service
12     hasrestart => true,
13   }
14 }