|Repo Name| version | Build Status| |—|—|—|—| |cd_clamav|
-0.0.0.1 | |
Synopsis
@@ -112,9 +111,6 @@ Structure|Repo Name| version | Build Status| |—|—|—|—| |cd_clamav|
-0.0.0.1 | |
Synopsis
@@ -112,9 +111,6 @@ Structurewhich package
type to choose, i.e. latest or present.
where to log messages for the clamd service.
+whether log file should be locked for writing -the lock protects +againstrunning clamd multiple times
+themax size for the logfile. This also enables logrotation.
+Whether to log the time with each message.
+whether to log clean files. Useful in debugging but drastically increases +the log size.
+Use system logger (can work together with LogFile).
+type of syslog messages - please refer to 'man syslog'for facility +names
+Whether to log verbose.
+whether to enable log rotation. Always enabled when LogFileMaxSize is +enabled.
+whether to enable prelude output.
+name of the analyzer used by prelude-admin.
latest or present.
-28 -29 -30 -31 -32 -33 -34 -35 -36 -37 -38 -39 -40 -41 -42 -43 -44 -45 46 47 48 49 50 51 -52+52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76 +77 +78 +79 +80 +81 +82 +83 +84
# File 'manifests/params.pp', line 28
+ # File 'manifests/params.pp', line 46
class cd_clamav::params (
# installation
-$reqpackages = ['clamav','clamav-update','clamd'],
-$pkg_ensure = 'present',
+$reqpackages = ['clamav','clamav-update','clamd'],
+$pkg_ensure = 'present',
+
+# clamd
+$cv_logfile = '/var/log/clamd.scan',
+$cv_logfileunlock = 'no',
+$cv_logfilemaxsize = '2M',
+$cv_logtime = 'yes',
+$cv_logclean = 'no',
+$cv_logsyslog = 'yes',
+$cv_logfacility = 'LOG_MAIL',
+$cv_logverbose = 'no',
+$cv_logrotate = 'yes',
+$cv_preludeenable = 'no',
+$cv_preludeanalyzername = 'ClamAV',
+
) {