Puppet Class: clamav_cd::main::service
- Inherits:
- clamav_cd::params
- Defined in:
- manifests/main/service.pp
Summary
Class manages the service(s) for clamav_cd.Overview
clamav_cd::main::service.pp Module name: clamav_cd Author: Arne Teuke (arne_teuke@confdroid.com)
6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'manifests/main/service.pp', line 6
class clamav_cd::main::service (
) inherits clamav_cd::params {
require clamav_cd::main::files
# service { $cv_service:
# ensure => running,
# hasstatus => true,
# hasrestart => true,
# enable => true,
# }
}
|