#
# Cookbook:: irrigate-python
# Recipe:: python34
#
# Copyright:: (C) 2017 The Orchard
#
# All rights reserved - Do Not Redistribute
#

include_recipe 'irrigate-python'

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

    packages = %w(
      python34u
      python34u-libs
      python34u-devel
      python34u-pip
    )

    packages.each do |name|
      package name do
        action :remove
      end
    end

    packages = %w(
      epel-release
      python34
      python34-libs
      python34-devel
      python34-pip
    )

    packages.each do |name|
      package name
    end

  end

end
