Puppet Class: falcon::service
- Inherits:
- falcon::params
- Defined in:
- manifests/service.pp
Summary
This class handles falcon sensor service.Overview
6 7 8 9 10 11 12 13 14 |
# File 'manifests/service.pp', line 6
class falcon::service inherits falcon::params {
if $falcon::service_manage and $facts['kernel'] != 'Darwin' {
service { 'falcon':
ensure => $falcon::service_ensure,
name => $falcon::service_name,
enable => $falcon::service_enable,
}
}
}
|