summaryrefslogtreecommitdiff
path: root/kitchen-tests
diff options
context:
space:
mode:
authorPete Higgins <pete@peterhiggins.org>2020-12-30 15:57:04 -0800
committerTim Smith <tsmith84@gmail.com>2021-01-04 12:44:08 -0800
commit351522ea504aee9e635dc7de6e668c9346f89763 (patch)
tree338d0efc8aee69a1aa9d78c133f1576c92317d98 /kitchen-tests
parent495873a950c4793b1a4e907fb973044097285b4f (diff)
downloadchef-351522ea504aee9e635dc7de6e668c9346f89763.tar.gz
Coerce uid to integer in Windows user resource.uuid
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
Diffstat (limited to 'kitchen-tests')
-rw-r--r--kitchen-tests/cookbooks/end_to_end/recipes/windows.rb10
1 files changed, 9 insertions, 1 deletions
diff --git a/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb b/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb
index 58ccec9b26..ea5f0f7421 100644
--- a/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb
+++ b/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb
@@ -105,4 +105,12 @@ include_recipe "::_ohai_hint"
hostname "new-hostname" do
windows_reboot false
-end \ No newline at end of file
+end
+
+user "phil" do
+ uid "8019"
+end
+
+user "phil" do
+ action :remove
+end