]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - modules/clamav/manifests/init.pp
move all files to explicit new-style module/ paths
[dsa-puppet.git] / modules / clamav / manifests / init.pp
index 591bbf5d8cb8fa457b2cee25dc17ba6f509b228c..c2bd0d10ca896543f9b58db543f10f4eeb2dd919 100644 (file)
@@ -1,7 +1,21 @@
 class clamav {
-    package { "clamav-daemon": ensure => installed;
-              "clamav-freshclam": ensure => installed;
-              "clamav-unofficial-sigs": ensure => installed;
+    package {
+        "clamav-daemon": ensure => installed;
+        "clamav-freshclam": ensure => installed;
+        "clamav-unofficial-sigs": ensure => installed;
+    }
+    file {
+        "/etc/clamav-unofficial-sigs.dsa.conf":
+            require => Package["clamav-unofficial-sigs"],
+            source  => [ "puppet:///modules/clamav/clamav-unofficial-sigs.dsa.conf" ]
+            ;
+        "/etc/clamav-unofficial-sigs.conf":
+            require => Package["clamav-unofficial-sigs"],
+            source  => [ "puppet:///modules/clamav/clamav-unofficial-sigs.conf" ]
+            ;
     }
 }
 
+# vim:set et:
+# vim:set sts=4 ts=4:
+# vim:set shiftwidth=4: