---
infra::role: base
+infra::additional_classes:
+ - infra::profile::apache
+ - infra::profile::cron
+
+infra::profile::apache::pp_vhosts:
+ testtelefonie:
+ docroot: /var/www/testtelefonie
+ servername: web-testtelefonie.pixelpark.com
+ serveraliases:
+ - testtelefonie.pixelpark.com
+ ssl: false
+ directories:
+ - provider: directory
+ path: '/var/www/testtelefonie'
+ options:
+ - FollowSymLinks
+ - MultiViews
+ allow_override:
+ - All
+ directoryindex: index.html
+
+infra::profile::cron::cronjobs:
+ web-stop:
+ command: 'systemctl stop httpd'
+ minute: '0'
+ hour: '16'
+ date: '*'
+ month: '*'
+ weekday: '*'
+ user: apache
+ description: 'stop Apache'
+ web-start:
+ command: 'systemctl start httpd'
+ minute: '15'
+ hour: '16'
+ date: '*'
+ month: '*'
+ weekday: '*'
+ user: apache
+ description: 'start Apache'