chef-bin 16.3.38 → 16.5.64
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/Rakefile +1 -1
- data/bin/chef-apply +1 -1
- data/bin/chef-client +1 -1
- data/bin/chef-resource-inspector +1 -1
- data/bin/chef-service-manager +5 -5
- data/bin/chef-shell +1 -1
- data/bin/chef-solo +1 -1
- data/bin/chef-windows-service +1 -1
- data/lib/chef-bin/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: aa22319ddf728aee6fa2a1a09e21d02b4d799556da53146f95d6dc6e192421c1
|
4
|
+
data.tar.gz: 2ac162599aeceaa963f512e4848d0b8c94331839badf4d7af531dd9c7f28342f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6cb5751e4f7efdb60d9bdd4e44ab824aad91bef76d1795309e44d926ac90089854ff3dd3a20caa7ab5a4f8375509ba1d0b8fe885d3c6f69d6de9f1fcfb20a76
|
7
|
+
data.tar.gz: c87adfcebd73c1db5f4542aacd3906cbe0e388d5c4ae9c13d84f2f23a8d05c0bce982f60683064df55978331d62c1eff592a3741c6a1af2838c35a539a1b5431
|
data/Rakefile
CHANGED
@@ -10,7 +10,7 @@ Bundler::GemHelper.install_tasks
|
|
10
10
|
desc "force install the chef-bin gem"
|
11
11
|
task "install:force" do
|
12
12
|
sh "gem build -V chef-bin.gemspec"
|
13
|
-
built_gem_path = Dir["chef-bin-*.gem"].
|
13
|
+
built_gem_path = Dir["chef-bin-*.gem"].max_by { |f| File.mtime(f) }
|
14
14
|
FileUtils.mkdir_p("pkg") unless Dir.exist?("pkg")
|
15
15
|
FileUtils.mv(built_gem_path, "pkg")
|
16
16
|
sh "gem install -f pkg/#{built_gem_path}"
|
data/bin/chef-apply
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
# See the License for the specific language governing permissions and
|
19
19
|
# limitations under the License.
|
20
20
|
|
21
|
-
$:.unshift(File.join(
|
21
|
+
$:.unshift(File.join(__dir__, "..", "lib"))
|
22
22
|
require "chef/application/apply"
|
23
23
|
|
24
24
|
Chef::Application::Apply.new.run(enforce_license: true)
|
data/bin/chef-client
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
# See the License for the specific language governing permissions and
|
19
19
|
# limitations under the License.
|
20
20
|
|
21
|
-
$:.unshift(File.join(
|
21
|
+
$:.unshift(File.join(__dir__, "..", "lib"))
|
22
22
|
require "chef"
|
23
23
|
require "chef/application/client"
|
24
24
|
|
data/bin/chef-resource-inspector
CHANGED
data/bin/chef-service-manager
CHANGED
@@ -18,16 +18,16 @@
|
|
18
18
|
# See the License for the specific language governing permissions and
|
19
19
|
# limitations under the License.
|
20
20
|
|
21
|
-
$:.unshift(File.join(
|
21
|
+
$:.unshift(File.join(__dir__, "..", "lib"))
|
22
22
|
require "chef"
|
23
23
|
require "chef/application/windows_service_manager"
|
24
|
-
require "chef/dist"
|
24
|
+
require "chef-utils/dist" unless defined?(ChefUtils::Dist)
|
25
25
|
|
26
26
|
if Chef::Platform.windows?
|
27
27
|
chef_client_service = {
|
28
|
-
service_name:
|
29
|
-
service_display_name: "#{
|
30
|
-
service_description: "Runs #{
|
28
|
+
service_name: ChefUtils::Dist::Infra::CLIENT,
|
29
|
+
service_display_name: "#{ChefUtils::Dist::Infra::PRODUCT} Service",
|
30
|
+
service_description: "Runs #{ChefUtils::Dist::Infra::PRODUCT} on regular, configurable intervals.",
|
31
31
|
service_file_path: File.expand_path("../chef-windows-service", $PROGRAM_NAME),
|
32
32
|
delayed_start: true,
|
33
33
|
dependencies: ["Winmgmt"],
|
data/bin/chef-shell
CHANGED
data/bin/chef-solo
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
# See the License for the specific language governing permissions and
|
19
19
|
# limitations under the License.
|
20
20
|
|
21
|
-
$:.unshift(File.join(
|
21
|
+
$:.unshift(File.join(__dir__, "..", "lib"))
|
22
22
|
require "chef/application/solo"
|
23
23
|
|
24
24
|
Chef::Application::Solo.new.run(enforce_license: true)
|
data/bin/chef-windows-service
CHANGED
@@ -23,7 +23,7 @@
|
|
23
23
|
# generate will call that file, and will be registered as
|
24
24
|
# a windows service.
|
25
25
|
|
26
|
-
$:.unshift(File.join(
|
26
|
+
$:.unshift(File.join(__dir__, "..", "lib"))
|
27
27
|
require "chef"
|
28
28
|
require "chef/application/windows_service"
|
29
29
|
|
data/lib/chef-bin/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chef-bin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 16.
|
4
|
+
version: 16.5.64
|
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-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: chef
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 16.
|
19
|
+
version: 16.5.64
|
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: 16.
|
26
|
+
version: 16.5.64
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|