aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/role/dev/drupal8.pp7
1 files changed, 4 insertions, 3 deletions
diff --git a/manifests/role/dev/drupal8.pp b/manifests/role/dev/drupal8.pp
index f16a926..b4ebc66 100644
--- a/manifests/role/dev/drupal8.pp
+++ b/manifests/role/dev/drupal8.pp
@@ -10,7 +10,7 @@ class nodo::role::dev::drupal8(
include apache
include nodo::utils::development::web
include nodo::utils::development::php
- include php
+ include php::series7
include database
include drupal
@@ -27,13 +27,14 @@ class nodo::role::dev::drupal8(
# Xdebug config
# https://www.drupal.org/node/2488300
#file { '/etc/php5/apache2/conf.d/20-xdebug-levels.ini':
- file { '/etc/php/5.6/apache2/conf.d/20-xdebug-levels.ini':
+ #file { '/etc/php/5.6/apache2/conf.d/20-xdebug-levels.ini':
+ file { '/etc/php/7.0/apache2/conf.d/20-xdebug-levels.ini':
ensure => present,
owner => 'root',
group => 'root',
mode => '0644',
content => "[xdebug]\nxdebug.max_nesting_level=256\n",
- require => Package['php5'],
+ require => Package['php'],
notify => Service['apache2'],
}