summaryrefslogtreecommitdiff
path: root/kitchen-tests
diff options
context:
space:
mode:
authorDavin Taddeo <davin@chef.io>2021-05-14 16:06:19 -0400
committerDavin Taddeo <davin@chef.io>2021-05-14 16:06:19 -0400
commitdc6cbc92d0c56e910eb585188108762a46cb78e3 (patch)
treea2852a7bac76f685f9a0a28afa7bade3e140b5af /kitchen-tests
parentf80bfa4e5f654107a9814cec5710e9b837f83800 (diff)
downloadchef-dc6cbc92d0c56e910eb585188108762a46cb78e3.tar.gz
Update validation on the ResetLockoutCount to limit it to LockoutDuration rather than limiting it to 30 minutes
Signed-off-by: Davin Taddeo <davin@chef.io>
Diffstat (limited to 'kitchen-tests')
-rw-r--r--kitchen-tests/cookbooks/end_to_end/recipes/windows.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb b/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb
index e518aa522d..0065605ffd 100644
--- a/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb
+++ b/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb
@@ -39,12 +39,12 @@ windows_security_policy "LockoutBadCount" do
end
windows_security_policy "LockoutDuration" do
- secvalue "30"
+ secvalue "120"
action :set
end
windows_security_policy "ResetLockoutCount" do
- secvalue "15"
+ secvalue "90"
action :set
end