Update ODL to Beryllium ERP RC3
[integration/packaging/puppet-opendaylight.git] / manifests / service.pp
1 # == Class opendaylight::service
2 #
3 # Starts the OpenDaylight systemd or Upstart service.
4 #
5 class opendaylight::service {
6   service { 'opendaylight':
7     ensure     => running,
8     enable     => true,
9     hasstatus  => true,
10     # TODO: Confirm this is actually supported by ODL service
11     hasrestart => true,
12   }
13 }