chef-bin 18.8.54 → 19.1.164
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/Gemfile +1 -1
- data/bin/chef-apply +0 -0
- data/bin/chef-client +1 -1
- data/bin/chef-resource-inspector +1 -1
- data/bin/chef-service-manager +0 -0
- data/bin/chef-shell +1 -2
- data/bin/chef-solo +1 -1
- data/bin/chef-windows-service +0 -0
- data/lib/chef-bin/version.rb +2 -2
- data/lib/chef-bin.rb +1 -1
- metadata +5 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 41ff2f334ca40715ec90b3fb39e7dd427f9f944228525c29bdb11e50be443760
|
|
4
|
+
data.tar.gz: 7eb575cab4621306c516fbdcd7094f936e26ad5bd49b03c58c69682ef5f9a2ec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a78b9c31046b85cb89171da2fc08e5d2e66fa87e2c331e130dfc827cbf22e928f4f81e2b9007622eb3a161b485f4162136e9fa4c7a70a64fcfca367ff2ec15bc
|
|
7
|
+
data.tar.gz: bc2f4016ad289df61452cd7e205f211980b449c74b21face28655d0512272c507a58fc6160c530218ab56ea1a5e8889ea902dd0cd0ba6a4e2ad2117da05f706a
|
data/Gemfile
CHANGED
data/bin/chef-apply
CHANGED
|
File without changes
|
data/bin/chef-client
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# ./chef-client - Run the chef client
|
|
4
4
|
#
|
|
5
5
|
# Author:: AJ Christensen (<aj@chef.io>)
|
|
6
|
-
# Copyright:: Copyright
|
|
6
|
+
# Copyright:: Copyright (c) 2009-2026 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.
|
|
7
7
|
# License:: Apache License, Version 2.0
|
|
8
8
|
#
|
|
9
9
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
data/bin/chef-resource-inspector
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
#
|
|
3
3
|
# ./chef-resource-inspector - Find information about a resource
|
|
4
4
|
#
|
|
5
|
-
# Copyright:: Copyright (c)
|
|
5
|
+
# Copyright:: Copyright (c) 2009-2026 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.
|
|
6
6
|
# License:: Apache License, Version 2.0
|
|
7
7
|
#
|
|
8
8
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
data/bin/chef-service-manager
CHANGED
|
File without changes
|
data/bin/chef-shell
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# ./chef-shell - Run the Chef REPL (Shell)
|
|
4
4
|
#
|
|
5
5
|
# Author:: Daniel DeLeo (<dan@kallistec.com>)
|
|
6
|
-
# Copyright:: Copyright 2009-
|
|
6
|
+
# Copyright:: Copyright (c) 2009-2026 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.
|
|
7
7
|
# License:: Apache License, Version 2.0
|
|
8
8
|
#
|
|
9
9
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -22,7 +22,6 @@ Encoding.default_external = Encoding::UTF_8
|
|
|
22
22
|
|
|
23
23
|
require "irb"
|
|
24
24
|
require "irb/completion"
|
|
25
|
-
require "irb/ext/save-history"
|
|
26
25
|
|
|
27
26
|
$:.unshift(File.expand_path(File.join(__dir__, "..", "lib")))
|
|
28
27
|
|
data/bin/chef-solo
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# ./chef-solo - Run the chef client, in stand-alone mode
|
|
4
4
|
#
|
|
5
5
|
# Author:: AJ Christensen (<aj@chef.io>)
|
|
6
|
-
# Copyright:: Copyright
|
|
6
|
+
# Copyright:: Copyright (c) 2009-2026 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.
|
|
7
7
|
# License:: Apache License, Version 2.0
|
|
8
8
|
#
|
|
9
9
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
data/bin/chef-windows-service
CHANGED
|
File without changes
|
data/lib/chef-bin/version.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright:: Copyright (c)
|
|
1
|
+
# Copyright:: Copyright (c) 2009-2026 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.
|
|
2
2
|
# License:: Apache License, Version 2.0
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
|
|
22
22
|
module ChefBin
|
|
23
23
|
CHEFBIN_ROOT = File.expand_path("..", __dir__)
|
|
24
|
-
VERSION = "
|
|
24
|
+
VERSION = "19.1.164".freeze
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
#
|
data/lib/chef-bin.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#
|
|
2
|
-
# Copyright:: Copyright (c)
|
|
2
|
+
# Copyright:: Copyright (c) 2009-2026 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.
|
|
3
3
|
# License:: Apache License, Version 2.0
|
|
4
4
|
#
|
|
5
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chef-bin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 19.1.164
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adam Jacob
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: chef
|
|
@@ -16,14 +15,14 @@ dependencies:
|
|
|
16
15
|
requirements:
|
|
17
16
|
- - '='
|
|
18
17
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
18
|
+
version: 19.1.164
|
|
20
19
|
type: :runtime
|
|
21
20
|
prerelease: false
|
|
22
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
22
|
requirements:
|
|
24
23
|
- - '='
|
|
25
24
|
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
25
|
+
version: 19.1.164
|
|
27
26
|
- !ruby/object:Gem::Dependency
|
|
28
27
|
name: rake
|
|
29
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -38,7 +37,6 @@ dependencies:
|
|
|
38
37
|
- - ">="
|
|
39
38
|
- !ruby/object:Gem::Version
|
|
40
39
|
version: '0'
|
|
41
|
-
description:
|
|
42
40
|
email:
|
|
43
41
|
- adam@chef.io
|
|
44
42
|
executables:
|
|
@@ -69,7 +67,6 @@ homepage: https://github.com/chef/chef
|
|
|
69
67
|
licenses:
|
|
70
68
|
- Apache-2.0
|
|
71
69
|
metadata: {}
|
|
72
|
-
post_install_message:
|
|
73
70
|
rdoc_options: []
|
|
74
71
|
require_paths:
|
|
75
72
|
- lib
|
|
@@ -84,8 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
84
81
|
- !ruby/object:Gem::Version
|
|
85
82
|
version: '0'
|
|
86
83
|
requirements: []
|
|
87
|
-
rubygems_version: 3.
|
|
88
|
-
signing_key:
|
|
84
|
+
rubygems_version: 3.6.9
|
|
89
85
|
specification_version: 4
|
|
90
86
|
summary: Chef-branded binstubs for chef-client
|
|
91
87
|
test_files: []
|