From 1db5cfc5293caf00ea823d558c15f99d569f32f5 Mon Sep 17 00:00:00 2001 From: Matt Wrock Date: Wed, 27 Jan 2016 11:31:45 -0800 Subject: [PATCH] Revert "Add fips flag to boostrap" --- lib/chef/knife/bootstrap_windows_base.rb | 5 ----- lib/chef/knife/core/windows_bootstrap_context.rb | 4 ---- 2 files changed, 9 deletions(-) diff --git a/lib/chef/knife/bootstrap_windows_base.rb b/lib/chef/knife/bootstrap_windows_base.rb index d15c9160..4656c915 100644 --- a/lib/chef/knife/bootstrap_windows_base.rb +++ b/lib/chef/knife/bootstrap_windows_base.rb @@ -200,11 +200,6 @@ def self.included(includer) :description => "Comma separated list of tags to apply to the node", :proc => lambda { |o| o.split(/[\s,]+/) }, :default => [] - - option :fips, - :long => "--fips", - :description => "Set openssl to run in fips mode", - :boolean => true end end diff --git a/lib/chef/knife/core/windows_bootstrap_context.rb b/lib/chef/knife/core/windows_bootstrap_context.rb index c2a64d44..873eaaff 100644 --- a/lib/chef/knife/core/windows_bootstrap_context.rb +++ b/lib/chef/knife/core/windows_bootstrap_context.rb @@ -136,10 +136,6 @@ def config_content client_rb << %Q{trusted_certs_dir "c:/chef/trusted_certs"\n} end - if @config[:fips] - client_rb << %Q{fips true\n} - end - escape_and_echo(client_rb) end