Puppet Class: te_axon::service
- Inherits:
- te_axon
- Defined in:
- manifests/service.pp
Overview
Manages the Axon Agent and Event Generator services. Private class.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'manifests/service.pp', line 3
class te_axon::service inherits te_axon {
if $te_axon::service_manage {
service { 'tripwire-axon-agent':
ensure => $te_axon::service_ensure,
enable => $te_axon::service_enable,
name => $te_axon::service_name,
provider => $te_axon::service_provider,
hasstatus => true,
hasrestart => true,
}
}
if $te_axon::service_rtm_manage {
service { 'tw-eg-service':
ensure => $te_axon::service_rtm_ensure,
enable => $te_axon::service_rtm_enable,
name => $te_axon::service_rtm_name,
provider => $te_axon::service_rtm_provider,
hasstatus => true,
hasrestart => true,
}
}
}
|