Added custom Rake commands for Beaker tests
[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   # TODO: Actually make ODL into a service that works this way
8
9   service { $::opendaylight::service_name:
10     ensure     => running,
11     enable     => true,
12     hasstatus  => true,
13     hasrestart => true,
14   }
15 }