add parameters
This commit is contained in:
@@ -25,25 +25,29 @@
|
||||
# @param [String] cv_preludeenable whether to enable prelude output.
|
||||
# @param [String] cv_preludeanalyzername name of the analyzer used by
|
||||
# prelude-admin.
|
||||
# @param [String] cv_tcpsocket socket port
|
||||
# @param [String] cv_tcpaddress ip address to listen on
|
||||
##############################################################################
|
||||
class clamav_cd::params (
|
||||
|
||||
# installation
|
||||
Array $reqpackages = ['clamav','clamd'],
|
||||
String $pkg_ensure = 'present',
|
||||
Array $reqpackages = ['clamav','clamd'],
|
||||
String $pkg_ensure = 'present',
|
||||
|
||||
# clamd
|
||||
String $cv_logfile = '/var/log/clamd.scan',
|
||||
String $cv_logfileunlock = 'no',
|
||||
String $cv_logfilemaxsize = '2M',
|
||||
String $cv_logtime = 'yes',
|
||||
String $cv_logclean = 'no',
|
||||
String $cv_logsyslog = 'yes',
|
||||
String $cv_logfacility = 'LOG_MAIL',
|
||||
String $cv_logverbose = 'no',
|
||||
String $cv_logrotate = 'yes',
|
||||
String $cv_preludeenable = 'no',
|
||||
String $cv_preludeanalyzername = 'ClamAV',
|
||||
String $cv_logfile = '/var/log/clamd.scan',
|
||||
String $cv_logfileunlock = 'no',
|
||||
String $cv_logfilemaxsize = '2M',
|
||||
String $cv_logtime = 'yes',
|
||||
String $cv_logclean = 'no',
|
||||
String $cv_logsyslog = 'yes',
|
||||
String $cv_logfacility = 'LOG_MAIL',
|
||||
String $cv_logverbose = 'no',
|
||||
String $cv_logrotate = 'yes',
|
||||
String $cv_preludeenable = 'no',
|
||||
String $cv_preludeanalyzername = 'ClamAV',
|
||||
String $cv_tcpsocket = '3310',
|
||||
String $cv_tcpaddress = '127.0.0.1',
|
||||
|
||||
) {
|
||||
# service
|
||||
|
||||
Reference in New Issue
Block a user