Puppet Class: jitsimeet::jicofo::service
- Defined in:
- manifests/jicofo/service.pp
Summary
Manages the jicofo service.Overview
3 4 5 6 7 8 9 10 11 12 |
# File 'manifests/jicofo/service.pp', line 3
class jitsimeet::jicofo::service {
service { $jitsimeet::jicofo::service_name:
ensure => running,
enable => true,
hasrestart => true,
hasstatus => true,
provider => 'systemd',
require => Package[$jitsimeet::jicofo::package_name],
}
}
|