2019-12-24 23:23:25 +01:00
|
|
|
## cd_clamav::main::service.pp
|
|
|
|
|
# Module name: cd_clamav
|
|
|
|
|
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
|
|
|
|
# @summary Class manages the service(s) for cd_clamav.
|
|
|
|
|
#############################################################################
|
|
|
|
|
class cd_clamav::main::service (
|
|
|
|
|
|
|
|
|
|
) inherits cd_clamav::params {
|
|
|
|
|
require cd_clamav::main::files
|
|
|
|
|
|
2019-12-24 23:58:13 +01:00
|
|
|
# service { $cv_service:
|
2025-05-06 15:08:37 +02:00
|
|
|
# ensure => running,
|
|
|
|
|
# hasstatus => true,
|
|
|
|
|
# hasrestart => true,
|
|
|
|
|
# enable => true,
|
2019-12-24 23:58:13 +01:00
|
|
|
# }
|
2019-12-24 23:23:25 +01:00
|
|
|
}
|