diff options
author | Tim Smith <tsmith@chef.io> | 2018-10-09 11:47:37 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-10-09 11:47:37 -0700 |
commit | 7703396a746c5c2b1442a8c000114a866c2bc3dd (patch) | |
tree | 5fa695cc7527a42c7f2004a1845c82a69986e99f | |
parent | 0d7b182dbd02b7f5177bafff788cb6a5aad6b316 (diff) | |
download | chef-kitchen_addons.tar.gz |
Add locale resource to the Travis kitchen testskitchen_addons
Let's make sure this works.
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | kitchen-tests/cookbooks/end_to_end/recipes/default.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kitchen-tests/cookbooks/end_to_end/recipes/default.rb b/kitchen-tests/cookbooks/end_to_end/recipes/default.rb index 3985cefd5a..0a5448f08f 100644 --- a/kitchen-tests/cookbooks/end_to_end/recipes/default.rb +++ b/kitchen-tests/cookbooks/end_to_end/recipes/default.rb @@ -9,6 +9,11 @@ hostname "chef-travis-ci.chef.io" apt_update +locale "Set locale to en_US" do + lang "en_US.utf8" + lc_all "en_US.utf8" +end + include_recipe "ubuntu" if platform?("ubuntu") if platform_family?("rhel", "fedora", "amazon") |