chef-config 15.8.23 → 15.12.22

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d855e981ca189727e91f36ef2f23cd54b0c9f8626826874971746d2ce0392aff
4
- data.tar.gz: f63b6b59c420a08ca172b34808c3bdbe2e299f41c67a601e043ea5da08c84e9f
3
+ metadata.gz: 117a509ce5be4d334f9d43f653118e0cc5fe737422a6e3b8bfad368ad61aae9a
4
+ data.tar.gz: b0b4e065d07d02313450a1925b2cb9a79296d4bea6eb5ca4d38900fc804fd4a5
5
5
  SHA512:
6
- metadata.gz: 831a382085dc473ee33b8c09adc1ca64b3421d7d5aa544232356ab761548682a203c203e536ae4b86765c2653a912feb8633c8d66b0769accd7d159ee39b3389
7
- data.tar.gz: 637219bf7c47dc0d099f6e3d6e8e08261981e0dd3017a7a4873d91ebd07184060dd89167d30339ba2ed32c375d79feabdac79182f3223b822cc2f17591cc6173
6
+ metadata.gz: 1e34a16229bc2ce166829872dd60b81fdf40a5e9d60826a9afb56c82181641cebb9c070937d89a71aac1194d1a95fea8345ae5cab013ec8fb7e261c756cb1e96
7
+ data.tar.gz: 12be33bd1100b208d07ff937f5cde8d9bf363fc04f3dddc6a67cf30e66d793b2d37594871fc957ff42762a4043b0fcabd1f3107d86eb6387b4429cc2e84a58bd
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright:: Copyright 2015-2016, Chef Software, Inc.
2
+ # Copyright:: Copyright (c) Chef Software Inc.
3
3
  # License:: Apache License, Version 2.0
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -4,7 +4,7 @@
4
4
  # Author:: AJ Christensen (<aj@chef.io>)
5
5
  # Author:: Mark Mzyk (<mmzyk@chef.io>)
6
6
  # Author:: Kyle Goodwin (<kgoodwin@primerevenue.com>)
7
- # Copyright:: Copyright 2008-2019, Chef Software Inc.
7
+ # Copyright:: Copyright (c) Chef Software Inc.
8
8
  # License:: Apache License, Version 2.0
9
9
  #
10
10
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -75,20 +75,20 @@ module ChefConfig
75
75
  end
76
76
 
77
77
  # On *nix, /etc/chef
78
- def self.etc_chef_dir
79
- path = ChefUtils.windows? ? c_chef_dir : PathHelper.join("/etc", ChefConfig::Dist::DIR_SUFFIX)
78
+ def self.etc_chef_dir(is_windows = ChefUtils.windows?)
79
+ path = is_windows ? c_chef_dir : PathHelper.join("/etc", ChefConfig::Dist::DIR_SUFFIX)
80
80
  PathHelper.cleanpath(path)
81
81
  end
82
82
 
83
83
  # On *nix, /var/chef
84
- def self.var_chef_dir
85
- path = ChefUtils.windows? ? c_chef_dir : PathHelper.join("/var", ChefConfig::Dist::DIR_SUFFIX)
84
+ def self.var_chef_dir(is_windows = ChefUtils.windows?)
85
+ path = is_windows ? c_chef_dir : PathHelper.join("/var", ChefConfig::Dist::DIR_SUFFIX)
86
86
  PathHelper.cleanpath(path)
87
87
  end
88
88
 
89
89
  # On *nix, the root of /var/, used to test if we can create and write in /var/chef
90
- def self.var_root_dir
91
- path = ChefUtils.windows? ? c_chef_dir : "/var"
90
+ def self.var_root_dir(is_windows = ChefUtils.windows?)
91
+ path = is_windows ? c_chef_dir : "/var"
92
92
  PathHelper.cleanpath(path)
93
93
  end
94
94
 
@@ -99,6 +99,12 @@ module ChefConfig
99
99
  PathHelper.cleanpath(path)
100
100
  end
101
101
 
102
+ def self.c_opscode_dir
103
+ drive = windows_installation_drive || "C:"
104
+ path = PathHelper.join(drive, ChefConfig::Dist::LEGACY_CONF_DIR, ChefConfig::Dist::DIR_SUFFIX)
105
+ PathHelper.cleanpath(path)
106
+ end
107
+
102
108
  # the drive where Chef is installed on a windows host. This is determined
103
109
  # either by the drive containing the current file or by the SYSTEMDRIVE ENV
104
110
  # variable
@@ -477,7 +483,7 @@ module ChefConfig
477
483
  # 11 (true) or Chef Server 12 (false). Chef Zero can still serve
478
484
  # policyfile objects in Chef 11 mode, as long as `repo_mode` is set to
479
485
  # "hosted_everything". The primary differences are:
480
- # * Chef 11 mode doesn't support multi-tennant, so there is no
486
+ # * Chef 11 mode doesn't support multi-tenant, so there is no
481
487
  # distinction between global and org-specific objects (since there are
482
488
  # no orgs).
483
489
  # * Chef 11 mode doesn't expose RBAC objects
@@ -525,7 +531,7 @@ module ChefConfig
525
531
  # switching based on it is almost certainly doing the wrong thing and papering over
526
532
  # bugs that should be fixed in one or the other class, and will be brittle and destined
527
533
  # to break in the future (and not necessarily on a major version bump). Checking this value
528
- # is also not sufficent to determine if we are not running against a server since this can
534
+ # is also not sufficient to determine if we are not running against a server since this can
529
535
  # be unset but :local_mode may be set. It would be accurate to check both :solo and :local_mode
530
536
  # to determine if we're not running against a server, but the more semantically accurate test
531
537
  # is going to be combining :solo_legacy_mode and :local_mode.
@@ -845,33 +851,6 @@ module ChefConfig
845
851
 
846
852
  # knife configuration data
847
853
  config_context :knife do
848
- # XXX: none of these default values are applied to knife (and would create a backcompat
849
- # break in knife if this bug was fixed since many of the defaults below are wrong). this appears
850
- # to be the start of an attempt to be able to use config_strict_mode true? if so, this approach
851
- # is fraught with peril because this namespace is used by every knife plugin in the wild and
852
- # we would need to validate every cli option in every knife attribute out there and list them all here.
853
- #
854
- # based on the way that people may define `knife[:foobar] = "something"` for the knife-foobar
855
- # gem plugin i'm pretty certain we can never turn on anything like config_string_mode since
856
- # any config value may be a typo or it may be in some gem in some knife plugin we don't know about.
857
- #
858
- # we do still need to maintain at least one of these so that the knife config hash gets
859
- # created.
860
- #
861
- # this whole situation is deeply unsatisfying.
862
- default :ssh_port, nil
863
- default :ssh_user, nil
864
- default :ssh_attribute, nil
865
- default :ssh_gateway, nil
866
- default :ssh_gateway_identity, nil
867
- default :bootstrap_version, nil
868
- default :bootstrap_proxy, nil
869
- default :bootstrap_template, nil
870
- default :secret, nil
871
- default :secret_file, nil
872
- default :host_key_verify, nil
873
- default :forward_agent, nil
874
- default :sort_status_reverse, nil
875
854
  default :hints, {}
876
855
  end
877
856
 
@@ -977,7 +956,7 @@ module ChefConfig
977
956
  # distribution.
978
957
  #
979
958
  # The disadvantages of lazily loading files are that users some time find it
980
- # confusing that their cookbooks are not fully synchronzied to the cache initially,
959
+ # confusing that their cookbooks are not fully synchronized to the cache initially,
981
960
  # and more importantly the time-sensitive URLs which are in the manifest may time
982
961
  # out on long Chef runs before the resource that uses the file is converged
983
962
  # (leading to many confusing 403 errors on template/cookbook_file resources).
@@ -1134,7 +1113,7 @@ module ChefConfig
1134
1113
  end
1135
1114
 
1136
1115
  # Given a scheme, host, and port, return the correct proxy URI based on the
1137
- # set environment variables, unless exluded by no_proxy, in which case nil
1116
+ # set environment variables, unless excluded by no_proxy, in which case nil
1138
1117
  # is returned
1139
1118
  def self.proxy_uri(scheme, host, port)
1140
1119
  proxy_env_var = ENV["#{scheme}_proxy"].to_s.strip
@@ -15,5 +15,9 @@ module ChefConfig
15
15
 
16
16
  # The user's configuration directory
17
17
  USER_CONF_DIR = ".chef".freeze
18
+
19
+ # The legacy conf folder: C:/opscode/chef. Specifically the "opscode" part
20
+ # DIR_SUFFIX is appended to it in code where relevant
21
+ LEGACY_CONF_DIR = "opscode".freeze
18
22
  end
19
23
  end
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright:: Copyright 2015-2019, Chef Software Inc.
2
+ # Copyright:: Copyright (c) Chef Software Inc.
3
3
  # License:: Apache License, Version 2.0
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # Author:: Matt Wrock (<matt@mattwrock.com>)
3
- # Copyright:: Copyright (c) 2016-2018, Chef Software Inc.
3
+ # Copyright:: Copyright (c) Chef Software Inc.
4
4
  # License:: Apache License, Version 2.0
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright:: Copyright 2015-2016, Chef Software, Inc.
2
+ # Copyright:: Copyright (c) Chef Software Inc.
3
3
  # License:: Apache License, Version 2.0
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright:: Copyright 2017, Chef Software, Inc.
2
+ # Copyright:: Copyright (c) Chef Software Inc.
3
3
  # License:: Apache License, Version 2.0
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright:: Copyright 2016, Chef Software Inc.
2
+ # Copyright:: Copyright (c) Chef Software Inc.
3
3
  # License:: Apache License, Version 2.0
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright:: Copyright 2016, Chef Software Inc.
2
+ # Copyright:: Copyright (c) Chef Software Inc.
3
3
  # License:: Apache License, Version 2.0
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # Author:: Bryan McLellan <btm@loftninjas.org>
3
- # Copyright:: Copyright 2014-2019, Chef Software Inc.
3
+ # Copyright:: Copyright (c) Chef Software Inc.
4
4
  # License:: Apache License, Version 2.0
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -130,16 +130,16 @@ module ChefConfig
130
130
  end
131
131
 
132
132
  # This is the INVERSE of Pathname#cleanpath, it converts forward
133
- # slashes to backwhacks for Windows. Since the Ruby API and the
133
+ # slashes to backslashes for Windows. Since the Ruby API and the
134
134
  # Windows APIs all consume forward slashes, this helper function
135
135
  # should only be used for *DISPLAY* logic to send strings back
136
- # to the user with backwhacks. Internally, filename paths should
136
+ # to the user with backslashes. Internally, filename paths should
137
137
  # generally be stored with forward slashes for consistency. It is
138
138
  # not necessary or desired to blindly convert pathnames to have
139
- # backwhacks on Windows.
139
+ # backslashes on Windows.
140
140
  #
141
141
  # Generally, if the user isn't going to be seeing it, you should be
142
- # using Pathname#cleanpath intead of this function.
142
+ # using Pathname#cleanpath instead of this function.
143
143
  def self.cleanpath(path)
144
144
  path = Pathname.new(path).cleanpath.to_s
145
145
  # ensure all forward slashes are backslashes
@@ -265,10 +265,10 @@ module ChefConfig
265
265
  end
266
266
  end
267
267
 
268
- # Determine if the given path is protected by OS X System Integrity Protection.
268
+ # Determine if the given path is protected by macOS System Integrity Protection.
269
269
  def self.is_sip_path?(path, node)
270
270
  if node["platform"] == "mac_os_x" && Gem::Version.new(node["platform_version"]) >= Gem::Version.new("10.11")
271
- # @todo: parse rootless.conf for this?
271
+ # @todo: parse rootless.conf for this?
272
272
  sip_paths = [
273
273
  "/System", "/bin", "/sbin", "/usr"
274
274
  ]
@@ -282,7 +282,7 @@ module ChefConfig
282
282
  end
283
283
  end
284
284
 
285
- # Determine if the given path is on the exception list for OS X System Integrity Protection.
285
+ # Determine if the given path is on the exception list for macOS System Integrity Protection.
286
286
  def self.writable_sip_path?(path)
287
287
  # todo: parse rootless.conf for this?
288
288
  sip_exceptions = [
@@ -1,4 +1,4 @@
1
- # Copyright:: Copyright 2010-2018, Chef Software Inc.
1
+ # Copyright:: Copyright (c) Chef Software Inc.
2
2
  # License:: Apache License, Version 2.0
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -15,5 +15,5 @@
15
15
 
16
16
  module ChefConfig
17
17
  CHEFCONFIG_ROOT = File.expand_path("../..", __FILE__)
18
- VERSION = "15.8.23".freeze
18
+ VERSION = "15.12.22".freeze
19
19
  end
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright:: Copyright 2015-2018, Chef Software Inc.
2
+ # Copyright:: Copyright (c) Chef Software Inc.
3
3
  # License:: Apache License, Version 2.0
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # Author:: Daniel DeLeo (<dan@chef.io>)
3
- # Copyright:: Copyright 2014-2019, Chef Software Inc.
3
+ # Copyright:: Copyright (c) Chef Software Inc.
4
4
  # License:: Apache License, Version 2.0
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # Author:: Adam Jacob (<adam@chef.io>)
3
3
  # Author:: Kyle Goodwin (<kgoodwin@primerevenue.com>)
4
- # Copyright:: Copyright 2008-2019, Chef Software Inc.
4
+ # Copyright:: Copyright (c) Chef Software Inc.
5
5
  # License:: Apache License, Version 2.0
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -186,29 +186,29 @@ RSpec.describe ChefConfig::Config do
186
186
  end
187
187
 
188
188
  describe "when configuring formatters" do
189
- # if TTY and not(force-logger)
190
- # formatter = configured formatter or default formatter
191
- # formatter goes to STDOUT/ERR
192
- # if log file is writeable
193
- # log level is configured level or info
194
- # log location is file
195
- # else
196
- # log level is warn
197
- # log location is STDERR
198
- # end
199
- # elsif not(TTY) and force formatter
200
- # formatter = configured formatter or default formatter
201
- # if log_location specified
202
- # formatter goes to log_location
203
- # else
204
- # formatter goes to STDOUT/ERR
205
- # end
206
- # else
207
- # formatter = "null"
208
- # log_location = configured-value or defualt
209
- # log_level = info or defualt
210
- # end
211
- #
189
+ # if TTY and not(force-logger)
190
+ # formatter = configured formatter or default formatter
191
+ # formatter goes to STDOUT/ERR
192
+ # if log file is writeable
193
+ # log level is configured level or info
194
+ # log location is file
195
+ # else
196
+ # log level is warn
197
+ # log location is STDERR
198
+ # end
199
+ # elsif not(TTY) and force formatter
200
+ # formatter = configured formatter or default formatter
201
+ # if log_location specified
202
+ # formatter goes to log_location
203
+ # else
204
+ # formatter goes to STDOUT/ERR
205
+ # end
206
+ # else
207
+ # formatter = "null"
208
+ # log_location = configured-value or defualt
209
+ # log_level = info or defualt
210
+ # end
211
+ #
212
212
  it "has an empty list of formatters by default" do
213
213
  expect(ChefConfig::Config.formatters).to eq([])
214
214
  end
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # Author:: Matt Wrock (<matt@mattwrock.com>)
3
- # Copyright:: Copyright (c) 2016-2018, Chef Software Inc.
3
+ # Copyright:: Copyright (c) Chef Software Inc.
4
4
  # License:: Apache License, Version 2.0
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # Author:: Bryan McLellan <btm@loftninjas.org>
3
- # Copyright:: Copyright 2014-2018, Chef Software Inc.
3
+ # Copyright:: Copyright (c) Chef Software Inc.
4
4
  # License:: Apache License, Version 2.0
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # Author:: Daniel DeLeo (<dan@chef.io>)
3
- # Copyright:: Copyright 2014-2016, Chef Software, Inc.
3
+ # Copyright:: Copyright (c) Chef Software Inc.
4
4
  # License:: Apache License, Version 2.0
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-config
3
3
  version: !ruby/object:Gem::Version
4
- version: 15.8.23
4
+ version: 15.12.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Jacob
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-02-07 00:00:00.000000000 Z
11
+ date: 2020-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: chef-utils
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 15.8.23
19
+ version: 15.12.22
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 15.8.23
26
+ version: 15.12.22
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: mixlib-shellout
29
29
  requirement: !ruby/object:Gem::Requirement