--- /dev/null
+---
+infra::role: base
+
+infra::additional_classes:
+ - infra::profile::postfix
+ - infra::profile::cron
+ - infra::profile::logrotate
+ - resolv_conf
+
+postfix::myorigin: "pixelpark.com"
+infra::profile::postfix::virtual_aliases_source: 'maps/virtual-nullclient-sparkasse'
+
+#####################################################
+# Logrotation
+
+infra::profile::logrotate::rules:
+ btmp:
+ dateformat: '-%Y-%m-%d'
+ wtmp:
+ dateformat: '-%Y-%m-%d'
+ syslog:
+ path:
+ - '/var/log/cron'
+ - '/var/log/maillog'
+ - '/var/log/messages'
+ - '/var/log/secure'
+ - '/var/log/spooler'
+ rotate_every: 'day'
+ rotate: 10
+ minsize: '4M'
+ compress: true
+ delaycompress: true
+ dateformat: '-%Y-%m-%d'
+ missingok: true
+ sharedscripts: true
+ postrotate: '/bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null || true'
+
+