Puppet Class: omsa::service
- Inherits:
- omsa::params
- Defined in:
- manifests/service.pp
Overview
Class: omsa::service
Internal class to manage OMSA services
Authors
Davide Ferrari <vide80@gmail.com>
Copyright
Copyright 2016 Davide Ferrari, unless otherwise noted.
16 17 18 19 20 21 22 23 24 |
# File 'manifests/service.pp', line 16
class omsa::service() inherits omsa::params {
service { $::omsa::service_name:
ensure => $::omsa::service_ensure,
enable => $::omsa::service_enable,
hasstatus => $::omsa::params::service_hasstatus,
hasrestart => $::omsa::params::service_hasrestart,
}
}
|