high risk of false positives
Signed-off-by: Stephen Gran <steve@lobefin.net>
--- /dev/null
+##
+## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
+## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
+##
+
+# Source all the configuration files from upstream, Debian and elsewhere
+for f in /usr/share/clamav-unofficial-sigs/conf.d/*.conf ; do
+ if [ -s "$f" ] ; then
+ . $f
+ fi
+done
+
+. /etc/clamav-unofficial-sigs.dsa.conf
--- /dev/null
+ss_dbs="
+ junk.ndb
+ jurlbl.ndb
+ lott.ndb
+ phish.ndb
+ rogue.hdb
+ sanesecurity.ftm
+ scam.ndb
+ spam.ldb
+ spamimg.hdb
+ spear.ndb
+ winnow_malware.hdb
+ winnow_malware_links.ndb
+ winnow_phish_complete_url.ndb
+"
+
+si_dbs="
+ honeynet.hdb
+ securiteinfo.hdb
+ vx.hdb
+"
+
"clamav-freshclam": ensure => installed;
"clamav-unofficial-sigs": ensure => installed;
}
+ file {
+ "/etc/clamav-unofficial-sigs.dsa.conf":
+ require => Package["clamav-unofficial-sigs"],
+ source => [ "puppet:///clamav/clamav-unofficial-sigs.dsa.conf" ]
+ ;
+ "/etc/clamav-unofficial-sigs.conf":
+ require => Package["clamav-unofficial-sigs"],
+ source => [ "puppet:///clamav/clamav-unofficial-sigs.conf" ]
+ ;
+ }
}