diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-04-25 10:55:45 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-04-25 11:02:18 -0700 |
commit | eb17a8baac262932108e61078078d7bad8027884 (patch) | |
tree | 4b850d4bc6d2d79b6d8489c69e5cf53cf57eeccb /kitchen-tests | |
parent | 7322308da2f96acb01a494152c2ccc6ced90715b (diff) | |
download | chef-eb17a8baac262932108e61078078d7bad8027884.tar.gz |
Test and better document the locale resourcetest_locale
Expand the docs a bit for the docs site.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'kitchen-tests')
-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 920023b32d..54750039c5 100644 --- a/kitchen-tests/cookbooks/end_to_end/recipes/default.rb +++ b/kitchen-tests/cookbooks/end_to_end/recipes/default.rb @@ -153,6 +153,11 @@ chef_client_systemd_timer "Run chef-client as a systemd timer" do only_if { systemd? } end +locale "set system locale" do + lang "en_US.UTF-8" + only_if { debian? } +end + include_recipe "::chef-vault" unless includes_recipe?("end_to_end::chef-vault") include_recipe "::alternatives" include_recipe "::tests" |