From 995527253e623d6a4b41568bb78ab9582bbb351f Mon Sep 17 00:00:00 2001 From: Jay Mundrawala Date: Mon, 25 Jan 2016 09:26:34 -0800 Subject: Fixup quotes in chef-config --- chef-config/lib/chef-config/config.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/chef-config/lib/chef-config/config.rb b/chef-config/lib/chef-config/config.rb index a371af9738..eda684a6b4 100644 --- a/chef-config/lib/chef-config/config.rb +++ b/chef-config/lib/chef-config/config.rb @@ -27,7 +27,7 @@ require "chef-config/windows" require "chef-config/path_helper" require "mixlib/shellout" require "uri" -require 'openssl' +require "openssl" module ChefConfig @@ -452,18 +452,18 @@ module ChefConfig default :recipe_url, nil # Set to true if Chef is to set OpenSSL to run in FIPS mode - default(:fips) { ENV['CHEF_FIPS'] == '1' } + default(:fips) { ENV["CHEF_FIPS"] == "1" } # Initialize openssl def self.init_openssl if fips ChefConfig.logger.warn "The `fips` feature is still a work in progress. This feature is incomplete." OpenSSL.fips_mode = true - require 'digest' - require 'digest/sha1' - require 'digest/md5' - Digest.const_set('SHA1', OpenSSL::Digest::SHA1) - OpenSSL::Digest.const_set('MD5', Digest::MD5) + require "digest" + require "digest/sha1" + require "digest/md5" + Digest.const_set("SHA1", OpenSSL::Digest::SHA1) + OpenSSL::Digest.const_set("MD5", Digest::MD5) end end -- cgit v1.2.1