#
# Cookbook:: irrigate-php
# Recipe:: qa_public_webapps
#
# Copyright:: 2018 The Orchard
#
# All rights reserved - Do Not Redistribute
#

include_recipe 'irrigate-php'
include_recipe 'irrigate-php::deploy_qa_user'
include_recipe 'irrigate-php::composer'

if platform_family?('rhel')
  if node['platform_version'].start_with?('7')

    # PHP opcache configuration snippet in the Remi-sandboxed location
    template '/opt/remi/php56/root/etc/php.d/10-opcache.ini' do
      source '10-opcache.ini.erb'
      mode '0644'
      owner 'root'
      group 'root'
      notifies :restart, 'service[apache2]'
    end

    # PHP memcached configuration snippet in the Remi-sandboxed location
    template '/opt/remi/php56/root/etc/php.d/50-memcached.ini' do
      source '50-memcached.ini.erb'
      mode '0644'
      owner 'root'
      group 'root'
      notifies :restart, 'service[apache2]'
    end
  end
end
