####Table of Contents
- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with clamav
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
##Overview
Puppet Module to install/configure clamd and freshclam on Debian and RedHat
##Module Description
The clamav module provides some classes to install and configure most of the components of clamav.
You may also choose to manage only the parts that you need.
This module aims to be minimalistic.
No options produces stock config files as provided by your package installer.
This module has the following components that can be managed (or not):
- Base clamav package - command line and libs
- clamav user
- clam daemon
- freshclam daemon/cron (dependent on OS)
##Setup
###What clamav affects
- clamav/clamd/freshclam package install
- clamav/clamd/freshclam config files
- clamd/freshclam services or daily cron on redhat
- clam user/group (optional)
###Setup Requirements
only need to install the module
###Beginning with clamav
Minimal clamav package install for command line use:
include clamav
##Usage
###Manage the clam and freshclam daemon with stock config
class { 'clamav':
manage_clamd => true,
manage_freshclam => true,
}
###Also manage the clam user and group
class { 'clamav':
manage_user => true,
uid => 499,
gid => 499,
shell => '/sbin/nologin',
manage_clamd => true,
manage_freshclam => true,
}
###Customize the clamd and freshclam config
class { 'clamav':
manage_clamd => true,
manage_freshclam => true,
clamd_options => {
'MaxScanSize' => '500M',
'MaxFileSize' => '150M',
},
freshclam_options => {
'LogTime' => 'yes',
'HTTPProxyServer' => 'myproxy.proxy.com',
'HTTPProxyPort' => '80',
'NotifyClamd' => '/etc/clamd.conf',
'DatabaseMirror' => [
'clam.host1.mydomain.com',
'clam.host2.mydomain.com',
],
},
}
###Configure with hiera yaml
include clamav
---
clamav::manage_clamd: true
clamav::manage_freshclam: true
clamav::clamd_options:
MaxScanSize: 500M
MaxFileSize: 150M
clamav::freshclam_options:
LogTime: yes
HTTPProxyServer: myproxy.proxy.com
HTTPProxyPort: 80
NotifyClamd: /etc/clamd.conf
DatabaseMirror:
- clam.host1.mydomain.com
- clam.host2.mydomain.com
##Reference
- clamav
- clamav::user
- clamav::clamd
- clamav::freshclam
##Limitations
This module has been built on and tested against Puppet 3.2.4 and higher.
While I am sure other versions work, I have not tested them.
This module supports modern RedHat and Debian based systems.
This module has been tested on Oracle Linux 6.x and Ubuntu 12.04.
No plans to support other versions (unless you add it :)..
##Development
Pull Requests welcome
##Contributors
Chris Edester (edestecd)
Patrick Schönfeld (aptituz)