#
# Cookbook:: irrigate-orchard_base
# Recipe:: locale
#
# Copyright: The Orchard
#

if platform_family?('debian')
  execute 'localectl' do
    command 'localectl set-locale en_US.UTF-8'
    not_if 'locale | grep -q "LANG=en_US.UTF-8"'
  end
end
