This cookbook updates the chef-client
- All platforms with a chef-client package on downloads.chef.io
- Chef 12.1+
- compat_resource
This cookbook provides both a custom resource and a default recipe. The default recipe simply uses the custom resource with a set of attributes. You can add chef_client_updater::default to your run list or use the custom resource in a wrapper cookbook.
Installs the mixlib-install/mixlib-install gems and upgrades the chef-client.
channel
- The chef channel you fetch the chef client from.stable
contains all officially released chef-client builds where ascurrent
contains unreleased builds. Default:stable
prevent_downgrade
- Don't allow this cookbook to downgrade the chef-client version. Default: trueversion
- The version of the chef-client to install. Default :latestpost_install_action
- After installing the chef-client what should we do.exec
to exec the new client orkill
to kill the client and rely on the init system to start up the new version. Default:exec
exec_command
- The chef-client command. default: $PROGRAM_NAME.split(' ').firstexec_args
- An array of arguments to exec the chef-client with. default: ARGV
chef_client_updater 'Install latest'
chef_client_updater 'Install 12.13.36 and kill' do
version '12.13.36'
post_install_action 'kill'
end
- Author: Tim Smith (tsmith@chef.io)
Copyright:: 2016-2017, Chef Software, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.