chef-utils 17.1.35 → 17.2.29
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-utils/dist.rb +39 -0
- data/lib/chef-utils/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 860b9ebe97ac8f22fcdeebb27bf112b4535edcffbb189dc7543ab4c30a1542cb
|
|
4
|
+
data.tar.gz: 7a3e2aab7feb50f45f4a57679d5644a8a4beab2b96eeaaf86032c2bdf6392aca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c749b979ec103b8f2b052cf2054747adc4e837f69251269412e37f2af6b90c3007dd41c94622de06d40d76964eb0f56d975d02d9965b22117a66e629ba8075d
|
|
7
|
+
data.tar.gz: be28ce9afeead797ba7783a8e60635061589c1e5b4343b76f8e927d1d82e25d04da7bd0910728270839259c45e7a0292b0a6e0cc481093aa4d7d14528f7f6465
|
data/lib/chef-utils/dist.rb
CHANGED
|
@@ -15,6 +15,25 @@ module ChefUtils
|
|
|
15
15
|
PRODUCT = "Chef Automate"
|
|
16
16
|
end
|
|
17
17
|
|
|
18
|
+
class Cli
|
|
19
|
+
# the chef-cli product name
|
|
20
|
+
PRODUCT = "Chef CLI"
|
|
21
|
+
|
|
22
|
+
# the chef-cli gem
|
|
23
|
+
GEM = "chef-cli"
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
class Habitat
|
|
27
|
+
# name of the Habitat product
|
|
28
|
+
PRODUCT = "Chef Habitat"
|
|
29
|
+
|
|
30
|
+
# A short designation for the product
|
|
31
|
+
SHORT = "habitat"
|
|
32
|
+
|
|
33
|
+
# The hab cli binary
|
|
34
|
+
EXEC = "hab"
|
|
35
|
+
end
|
|
36
|
+
|
|
18
37
|
class Infra
|
|
19
38
|
# When referencing a product directly, like Chef (Now Chef Infra)
|
|
20
39
|
PRODUCT = "Chef Infra Client"
|
|
@@ -42,6 +61,17 @@ module ChefUtils
|
|
|
42
61
|
# The suffix for Chef's /etc/chef, /var/chef and C:\\Chef directories
|
|
43
62
|
# "chef" => /etc/cinc, /var/cinc, C:\\cinc
|
|
44
63
|
DIR_SUFFIX = "chef"
|
|
64
|
+
|
|
65
|
+
# The client's gem
|
|
66
|
+
GEM = "chef"
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
class Inspec
|
|
70
|
+
# The InSpec product name
|
|
71
|
+
PRODUCT = "Chef InSpec"
|
|
72
|
+
|
|
73
|
+
# The inspec binary
|
|
74
|
+
EXEC = "inspec"
|
|
45
75
|
end
|
|
46
76
|
|
|
47
77
|
class Org
|
|
@@ -63,6 +93,9 @@ module ChefUtils
|
|
|
63
93
|
|
|
64
94
|
# knife documentation page
|
|
65
95
|
KNIFE_DOCS = "https://docs.chef.io/workstation/knife/"
|
|
96
|
+
|
|
97
|
+
# the name of the overall infra product
|
|
98
|
+
PRODUCT = "Chef Infra"
|
|
66
99
|
end
|
|
67
100
|
|
|
68
101
|
class Server
|
|
@@ -88,8 +121,14 @@ module ChefUtils
|
|
|
88
121
|
end
|
|
89
122
|
|
|
90
123
|
class Workstation
|
|
124
|
+
# The full marketing name of the product
|
|
125
|
+
PRODUCT = "Chef Workstation"
|
|
126
|
+
|
|
91
127
|
# The suffix for Chef Workstation's /opt/chef-workstation or C:\\opscode\chef-workstation
|
|
92
128
|
DIR_SUFFIX = "chef-workstation"
|
|
129
|
+
|
|
130
|
+
# Workstation banner/help text
|
|
131
|
+
DOCS = "https://docs.chef.io/workstation/"
|
|
93
132
|
end
|
|
94
133
|
|
|
95
134
|
class Zero
|
data/lib/chef-utils/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chef-utils
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 17.
|
|
4
|
+
version: 17.2.29
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chef Software, Inc
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-06-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: concurrent-ruby
|