diff --git a/doc/file.README.html b/doc/file.README.html
index 5542971..4a3cfd7 100644
--- a/doc/file.README.html
+++ b/doc/file.README.html
@@ -71,9 +71,8 @@
Features
Dependencies
-
Parameters
@@ -118,7 +117,7 @@
confdroid_resources for managing yum repo resources.
-Deployment
+Deployment
diff --git a/doc/index.html b/doc/index.html
index 2ca2ceb..444e7f3 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -71,9 +71,8 @@
Features
Dependencies
-
Parameters
@@ -118,7 +117,7 @@
confdroid_resources for managing yum repo resources.
-Deployment
+Deployment
diff --git a/doc/puppet_classes/confdroid_clamav_3A_3Amain_3A_3Ainstall.html b/doc/puppet_classes/confdroid_clamav_3A_3Amain_3A_3Ainstall.html
index e660374..3bae371 100644
--- a/doc/puppet_classes/confdroid_clamav_3A_3Amain_3A_3Ainstall.html
+++ b/doc/puppet_classes/confdroid_clamav_3A_3Amain_3A_3Ainstall.html
@@ -120,8 +120,8 @@ class confdroid_clamav::main::install (
) inherits confdroid_clamav::params {
require confdroid_resources::main::epel
- package { $reqpackages:
- ensure => $pkg_ensure,
+ package { $cv_reqpackages:
+ ensure => $cv_pkg_ensure,
}
}
diff --git a/doc/puppet_classes/confdroid_clamav_3A_3Aparams.html b/doc/puppet_classes/confdroid_clamav_3A_3Aparams.html
index f8d4b7a..a6f9a88 100644
--- a/doc/puppet_classes/confdroid_clamav_3A_3Aparams.html
+++ b/doc/puppet_classes/confdroid_clamav_3A_3Aparams.html
@@ -109,7 +109,7 @@ inherited by all classes except defines.
- reqpackages
+ cv_reqpackages
(Array)
@@ -127,7 +127,7 @@ inherited by all classes except defines.
- pkg_ensure
+ cv_pkg_ensure
(String)
@@ -517,6 +517,24 @@ inherited by all classes except defines.
—
whether to enable the clamd service
+
+
+
+
+
+
+ cv_use_excludepaths
+
+
+ (Boolean)
+
+
+ (defaults to: true)
+
+
+ —
+
+
whether to use advanced exclude paths
@@ -532,7 +550,6 @@ inherited by all classes except defines.
-39
40
41
42
@@ -582,16 +599,18 @@ inherited by all classes except defines.
86
87
88
-89
+89
+90
+91
- # File 'manifests/params.pp', line 39
+ # File 'manifests/params.pp', line 40
class confdroid_clamav::params (
# installation
- Array $reqpackages = ['clamav','clamd','s-nail'],
- String $pkg_ensure = 'present',
+ Array $cv_reqpackages = ['clamav','clamd','s-nail'],
+ String $cv_pkg_ensure = 'present',
# clamd
String $cv_logfile = '/var/log/clamd.scan',
@@ -615,6 +634,7 @@ class confdroid_clamav::params (
String $cv_alert_file = 'tmp/clamav-alert.txt',
Boolean $cv_enable_freshclam = true,
Boolean $cv_enable_clamd = true,
+ Boolean $cv_use_excludepaths = true
) {
# service
|