Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/noma4i/puppet-windows_clamav
- Owner: noma4i
- Created: 2015-02-11T03:27:54.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-15T04:17:49.000Z (over 9 years ago)
- Last Synced: 2024-05-08T22:16:07.528Z (6 months ago)
- Topics: clamav, puppet, windows
- Language: Puppet
- Size: 172 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WORK IN PROGRESS but this module is working atm
# windows_clamavPuppet 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'
}
````