Recommit for updates in build 10
This commit is contained in:
@@ -337,6 +337,42 @@ inherited by all classes except defines.
|
|||||||
—
|
—
|
||||||
<div class='inline'>
|
<div class='inline'>
|
||||||
<p>name of the analyzer used by prelude-admin.</p>
|
<p>name of the analyzer used by prelude-admin.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
|
||||||
|
<span class='name'>cv_tcpsocket</span>
|
||||||
|
|
||||||
|
|
||||||
|
<span class='type'>(<tt>String</tt>)</span>
|
||||||
|
|
||||||
|
|
||||||
|
<em class="default">(defaults to: <tt>'3310'</tt>)</em>
|
||||||
|
|
||||||
|
|
||||||
|
—
|
||||||
|
<div class='inline'>
|
||||||
|
<p>socket port</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
|
||||||
|
<span class='name'>cv_tcpaddress</span>
|
||||||
|
|
||||||
|
|
||||||
|
<span class='type'>(<tt>String</tt>)</span>
|
||||||
|
|
||||||
|
|
||||||
|
<em class="default">(defaults to: <tt>'127.0.0.1'</tt>)</em>
|
||||||
|
|
||||||
|
|
||||||
|
—
|
||||||
|
<div class='inline'>
|
||||||
|
<p>ip address to listen on</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
@@ -352,8 +388,6 @@ inherited by all classes except defines.
|
|||||||
<pre class="lines">
|
<pre class="lines">
|
||||||
|
|
||||||
|
|
||||||
29
|
|
||||||
30
|
|
||||||
31
|
31
|
||||||
32
|
32
|
||||||
33
|
33
|
||||||
@@ -390,29 +424,35 @@ inherited by all classes except defines.
|
|||||||
64
|
64
|
||||||
65
|
65
|
||||||
66
|
66
|
||||||
67</pre>
|
67
|
||||||
|
68
|
||||||
|
69
|
||||||
|
70
|
||||||
|
71</pre>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 29</span>
|
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 31</span>
|
||||||
|
|
||||||
class clamav_cd::params (
|
class clamav_cd::params (
|
||||||
|
|
||||||
# installation
|
# installation
|
||||||
Array $reqpackages = ['clamav','clamd'],
|
Array $reqpackages = ['clamav','clamd'],
|
||||||
String $pkg_ensure = 'present',
|
String $pkg_ensure = 'present',
|
||||||
|
|
||||||
# clamd
|
# clamd
|
||||||
String $cv_logfile = '/var/log/clamd.scan',
|
String $cv_logfile = '/var/log/clamd.scan',
|
||||||
String $cv_logfileunlock = 'no',
|
String $cv_logfileunlock = 'no',
|
||||||
String $cv_logfilemaxsize = '2M',
|
String $cv_logfilemaxsize = '2M',
|
||||||
String $cv_logtime = 'yes',
|
String $cv_logtime = 'yes',
|
||||||
String $cv_logclean = 'no',
|
String $cv_logclean = 'no',
|
||||||
String $cv_logsyslog = 'yes',
|
String $cv_logsyslog = 'yes',
|
||||||
String $cv_logfacility = 'LOG_MAIL',
|
String $cv_logfacility = 'LOG_MAIL',
|
||||||
String $cv_logverbose = 'no',
|
String $cv_logverbose = 'no',
|
||||||
String $cv_logrotate = 'yes',
|
String $cv_logrotate = 'yes',
|
||||||
String $cv_preludeenable = 'no',
|
String $cv_preludeenable = 'no',
|
||||||
String $cv_preludeanalyzername = 'ClamAV',
|
String $cv_preludeanalyzername = 'ClamAV',
|
||||||
|
String $cv_tcpsocket = '3310',
|
||||||
|
String $cv_tcpaddress = '127.0.0.1',
|
||||||
|
|
||||||
) {
|
) {
|
||||||
# service
|
# service
|
||||||
|
|||||||
Reference in New Issue
Block a user