chef-config 15.11.8 → 15.12.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/chef-config/config.rb +4 -4
- data/lib/chef-config/path_helper.rb +6 -6
- data/lib/chef-config/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 117a509ce5be4d334f9d43f653118e0cc5fe737422a6e3b8bfad368ad61aae9a
|
|
4
|
+
data.tar.gz: b0b4e065d07d02313450a1925b2cb9a79296d4bea6eb5ca4d38900fc804fd4a5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e34a16229bc2ce166829872dd60b81fdf40a5e9d60826a9afb56c82181641cebb9c070937d89a71aac1194d1a95fea8345ae5cab013ec8fb7e261c756cb1e96
|
|
7
|
+
data.tar.gz: 12be33bd1100b208d07ff937f5cde8d9bf363fc04f3dddc6a67cf30e66d793b2d37594871fc957ff42762a4043b0fcabd1f3107d86eb6387b4429cc2e84a58bd
|
data/lib/chef-config/config.rb
CHANGED
|
@@ -483,7 +483,7 @@ module ChefConfig
|
|
|
483
483
|
# 11 (true) or Chef Server 12 (false). Chef Zero can still serve
|
|
484
484
|
# policyfile objects in Chef 11 mode, as long as `repo_mode` is set to
|
|
485
485
|
# "hosted_everything". The primary differences are:
|
|
486
|
-
# * Chef 11 mode doesn't support multi-
|
|
486
|
+
# * Chef 11 mode doesn't support multi-tenant, so there is no
|
|
487
487
|
# distinction between global and org-specific objects (since there are
|
|
488
488
|
# no orgs).
|
|
489
489
|
# * Chef 11 mode doesn't expose RBAC objects
|
|
@@ -531,7 +531,7 @@ module ChefConfig
|
|
|
531
531
|
# switching based on it is almost certainly doing the wrong thing and papering over
|
|
532
532
|
# bugs that should be fixed in one or the other class, and will be brittle and destined
|
|
533
533
|
# to break in the future (and not necessarily on a major version bump). Checking this value
|
|
534
|
-
# is also not
|
|
534
|
+
# is also not sufficient to determine if we are not running against a server since this can
|
|
535
535
|
# be unset but :local_mode may be set. It would be accurate to check both :solo and :local_mode
|
|
536
536
|
# to determine if we're not running against a server, but the more semantically accurate test
|
|
537
537
|
# is going to be combining :solo_legacy_mode and :local_mode.
|
|
@@ -956,7 +956,7 @@ module ChefConfig
|
|
|
956
956
|
# distribution.
|
|
957
957
|
#
|
|
958
958
|
# The disadvantages of lazily loading files are that users some time find it
|
|
959
|
-
# confusing that their cookbooks are not fully
|
|
959
|
+
# confusing that their cookbooks are not fully synchronized to the cache initially,
|
|
960
960
|
# and more importantly the time-sensitive URLs which are in the manifest may time
|
|
961
961
|
# out on long Chef runs before the resource that uses the file is converged
|
|
962
962
|
# (leading to many confusing 403 errors on template/cookbook_file resources).
|
|
@@ -1113,7 +1113,7 @@ module ChefConfig
|
|
|
1113
1113
|
end
|
|
1114
1114
|
|
|
1115
1115
|
# Given a scheme, host, and port, return the correct proxy URI based on the
|
|
1116
|
-
# set environment variables, unless
|
|
1116
|
+
# set environment variables, unless excluded by no_proxy, in which case nil
|
|
1117
1117
|
# is returned
|
|
1118
1118
|
def self.proxy_uri(scheme, host, port)
|
|
1119
1119
|
proxy_env_var = ENV["#{scheme}_proxy"].to_s.strip
|
|
@@ -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
|
|
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
|
|
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
|
-
#
|
|
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
|
|
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,7 +265,7 @@ module ChefConfig
|
|
|
265
265
|
end
|
|
266
266
|
end
|
|
267
267
|
|
|
268
|
-
# Determine if the given path is protected by
|
|
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
271
|
# @todo: parse rootless.conf for this?
|
|
@@ -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
|
|
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 = [
|
data/lib/chef-config/version.rb
CHANGED
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.
|
|
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-
|
|
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.
|
|
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.
|
|
26
|
+
version: 15.12.22
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: mixlib-shellout
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|