allow archvsync to trigger snapshot imports
[mirror/dsa-puppet.git] / modules / varnish / manifests / init.pp
index 004711e..7561869 100644 (file)
@@ -30,5 +30,17 @@ class varnish {
                notify =>  Service['varnish'],
                mode    => '0444',
         }
+       file { '/var/lib/varnish/.nobackup':
+               ensure  => present,
+               content => "",
+               require =>  Package['varnish'],
+               mode    => '0444',
+       }
+
+        file { '/etc/logrotate.d/varnish':
+               source => 'puppet:///modules/varnish/varnish.logrotate',
+               require =>  Package['varnish'],
+               mode    => '0444',
+        }
 }