Skip to content
Snippets Groups Projects
Commit 0beb5455 authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

[FEATURE] Support the new shopware cookbook that requires PHP 5.6

parent f3150530
No related branches found
No related tags found
No related merge requests found
......@@ -38,10 +38,23 @@ else
template '/etc/php5/apache2/conf.d/xdebug.ini' do
mode '0644'
ignore_failure true
end
template '/etc/php5/cli/conf.d/xdebug.ini' do
mode '0644'
notifies :restart, 'service[apache2]', :delayed
ignore_failure true
end
template '/etc/php/5.6/apache2/conf.d/xdebug.ini' do
mode '0644'
ignore_failure true
end
template '/etc/php/5.6/cli/conf.d/xdebug.ini' do
mode '0644'
notifies :restart, 'service[apache2]', :delayed
ignore_failure true
end
end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment