summaryrefslogtreecommitdiff
path: root/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb
diff options
context:
space:
mode:
Diffstat (limited to 'kitchen-tests/cookbooks/end_to_end/recipes/windows.rb')
-rw-r--r--kitchen-tests/cookbooks/end_to_end/recipes/windows.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb b/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb
index c6cd597fe0..2558639df6 100644
--- a/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb
+++ b/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb
@@ -134,3 +134,28 @@ end
user "phil" do
action :remove
end
+
+directory 'C:\mordor' do
+ rights :full_control, "everyone"
+end
+
+cookbook_file "c:\\mordor\\steveb.pfx" do
+ source "/certs/steveb.pfx"
+ action :create_if_missing
+end
+
+windows_certificate "c:/mordor/steveb.pfx" do
+ pfx_password "1234"
+ action :create
+ user_store true
+ store_name "MY"
+end
+
+cookbook_file "c:\\mordor\\ca.cert.pem" do
+ source "/certs/ca.cert.pem"
+ action :create_if_missing
+end
+
+windows_certificate "c:/mordor/ca.cert.pem" do
+ store_name "ROOT"
+end