From 344a0ae308061489e58c6b34350b2b2c05659f61 Mon Sep 17 00:00:00 2001 From: Jenkins ConfDroid Date: Tue, 1 Dec 2020 18:21:57 +0100 Subject: [PATCH] recommit for updates in build 30 --- doc/file.README.html | 8 +- doc/index.html | 8 +- doc/puppet_classes/cd_clamav_3A_3Aparams.html | 274 ++++++++++++++++-- 3 files changed, 256 insertions(+), 34 deletions(-) diff --git a/doc/file.README.html b/doc/file.README.html index 5ae4bf8..b1b13da 100644 --- a/doc/file.README.html +++ b/doc/file.README.html @@ -58,9 +58,8 @@
-

|Repo Name| version | Build Status| |—|—|—|—| |cd_clamav| -0.0.0.1 | |

+

(pipelines.confdroid.com/buildStatus/icon?job=cd_clamav)](https://pipelines.confdroid.com/job/cd_clamav/)|

Synopsis

@@ -112,9 +111,6 @@ Structure

  • Tests

  • -

    Changelog

    -
  • Contact Us

  • Disclaimer

    diff --git a/doc/index.html b/doc/index.html index eac0140..c036615 100644 --- a/doc/index.html +++ b/doc/index.html @@ -58,9 +58,8 @@
  • -

    |Repo Name| version | Build Status| |—|—|—|—| |cd_clamav| -0.0.0.1 | |

    +

    (pipelines.confdroid.com/buildStatus/icon?job=cd_clamav)](https://pipelines.confdroid.com/job/cd_clamav/)|

    Synopsis

    @@ -112,9 +111,6 @@ Structure

  • Tests

  • -

    Changelog

    -
  • Contact Us

  • Disclaimer

    diff --git a/doc/puppet_classes/cd_clamav_3A_3Aparams.html b/doc/puppet_classes/cd_clamav_3A_3Aparams.html index 6ce8306..e1a3d2f 100644 --- a/doc/puppet_classes/cd_clamav_3A_3Aparams.html +++ b/doc/puppet_classes/cd_clamav_3A_3Aparams.html @@ -156,6 +156,208 @@ href="http://www.gnu.org/licenses">www.gnu.org/licenses/.

    which package type to choose, i.e. latest or present.

    +
    + +
  • + +
  • + + cv_logfile + + + (string) + + + (defaults to: '/var/log/clamd.scan') + + + — +
    +

    where to log messages for the clamd service.

    +
    + +
  • + +
  • + + cv_logfileunlock + + + (string) + + + (defaults to: 'no') + + + — +
    +

    whether log file should be locked for writing -the lock protects +againstrunning clamd multiple times

    +
    + +
  • + +
  • + + cv_logfilemaxsize + + + (string) + + + (defaults to: '2M') + + + — +
    +

    themax size for the logfile. This also enables logrotation.

    +
    + +
  • + +
  • + + cv_logtime + + + (string) + + + (defaults to: 'yes') + + + — +
    +

    Whether to log the time with each message.

    +
    + +
  • + +
  • + + cv_logclean + + + (string) + + + (defaults to: 'no') + + + — +
    +

    whether to log clean files. Useful in debugging but drastically increases +the log size.

    +
    + +
  • + +
  • + + cv_logsyslog + + + (string) + + + (defaults to: 'yes') + + + — +
    +

    Use system logger (can work together with LogFile).

    +
    + +
  • + +
  • + + cv_logfacility + + + (string) + + + (defaults to: 'LOG_MAIL') + + + — +
    +

    type of syslog messages - please refer to 'man syslog'for facility +names

    +
    + +
  • + +
  • + + cv_logverbose + + + (string) + + + (defaults to: 'no') + + + — +
    +

    Whether to log verbose.

    +
    + +
  • + +
  • + + cv_logrotate + + + (string) + + + (defaults to: 'yes') + + + — +
    +

    whether to enable log rotation. Always enabled when LogFileMaxSize is +enabled.

    +
    + +
  • + +
  • + + cv_preludeenable + + + (string) + + + (defaults to: 'no') + + + — +
    +

    whether to enable prelude output.

    +
    + +
  • + +
  • + + cv_preludeanalyzername + + + (string) + + + (defaults to: 'ClamAV') + + + — +
    +

    name of the analyzer used by prelude-admin.

  • @@ -170,40 +372,68 @@ type to choose, i.e. 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',
    +
     
     ) {