summaryrefslogtreecommitdiff
path: root/kitchen-tests
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2021-05-15 14:48:27 -0700
committerGitHub <noreply@github.com>2021-05-15 14:48:27 -0700
commitcece708893688ec8e1a1f1b6155b4c440bb88c9c (patch)
tree6fec3788c3df7e6c0e026f34e68fc988c3429021 /kitchen-tests
parent1abde114801952ed56e30dc44f3c634d4519a712 (diff)
parentdc6cbc92d0c56e910eb585188108762a46cb78e3 (diff)
downloadchef-cece708893688ec8e1a1f1b6155b4c440bb88c9c.tar.gz
Merge pull request #11583 from chef-davin/windows_security_policy
Update validation on the ResetLockoutCount to limit it to LockoutDuration rather than limiting it to 30 minutes
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 c5c5cdd540..e04396783b 100644
--- a/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb
+++ b/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb
@@ -43,12 +43,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