chef-config 15.12.22 → 15.16.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/chef-config.gemspec +1 -2
- data/lib/chef-config/config.rb +1 -1
- data/lib/chef-config/dist.rb +10 -0
- data/lib/chef-config/version.rb +2 -2
- 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: 2c9e93f74da0ef1178159ec3030f8ef376ef06b3cfb0ab15f8a2f207525cfc2a
|
4
|
+
data.tar.gz: 2d57d6368f0935f6e33751fe2ae9d6a5d2eb6e26842d4cf731610b9d40750ed0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18b86eac7be63e7a055aa07da76dca055e1bfa76d2891d459e0dc26447460b266cf0f558c213c06fb142d3ba52fa03d98e7136b417409faed7a143dc9bcd9727
|
7
|
+
data.tar.gz: 579a5e73661488607aef59f99df04981d9a455fbf8301810d7cdf55e3775cc65714b70db55c3327cc76dd8f853c64ef17eb46233c9f165acb6fce075616fef78
|
data/chef-config.gemspec
CHANGED
data/lib/chef-config/config.rb
CHANGED
@@ -359,7 +359,7 @@ module ChefConfig
|
|
359
359
|
#
|
360
360
|
# @param path [String]
|
361
361
|
def self.path_accessible?(path)
|
362
|
-
File.
|
362
|
+
File.exist?(path) && File.readable?(path) && File.writable?(path)
|
363
363
|
end
|
364
364
|
|
365
365
|
# Where cookbook files are stored on the server (by content checksum)
|
data/lib/chef-config/dist.rb
CHANGED
@@ -19,5 +19,15 @@ module ChefConfig
|
|
19
19
|
# The legacy conf folder: C:/opscode/chef. Specifically the "opscode" part
|
20
20
|
# DIR_SUFFIX is appended to it in code where relevant
|
21
21
|
LEGACY_CONF_DIR = "opscode".freeze
|
22
|
+
|
23
|
+
# Enable forcing Chef EULA
|
24
|
+
ENFORCE_LICENSE = true
|
25
|
+
|
26
|
+
# The servers's alias (chef-server)
|
27
|
+
SERVER = "chef-server".freeze
|
28
|
+
|
29
|
+
# The server's configuration utility
|
30
|
+
SERVER_CTL = "chef-server-ctl".freeze
|
31
|
+
|
22
32
|
end
|
23
33
|
end
|
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.16.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Jacob
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-03-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.16.4
|
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.16.4
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: mixlib-shellout
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|