Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/noma4i/puppet-windows_clamav

Puppet module to install and manage Windows ClamAV
https://github.com/noma4i/puppet-windows_clamav

clamav puppet windows

Last synced: 3 days ago
JSON representation

Puppet module to install and manage Windows ClamAV

Awesome Lists containing this project

README

        

# WORK IN PROGRESS but this module is working atm
# windows_clamav

Puppet module to install and manage ClamAV.

#### How to use

````puppet
windows_clamav::setup { 'Perform Setup. It is Optional':
enable_email => 1,
email_to => '[email protected]',
smtp_pass => '123123',
smtp_user => 'user',
smtp_host => 'passw0rd'
}

windows_clamav::update { 'Update ClamAV DB':
enabled => true,
every => '1',
start_time => '11:00'
}

windows_clamav::scan { 'Scan temp for viruses':
enabled => true,
scan => 'c:\temp',
every => '2',
start_time => '11:00'
}
windows_clamav::scan { 'Scan windows for viruses':
enabled => true,
scan => 'c:\windows',
every => '2',
start_time => '11:00'
}
````