forked from chef-cookbooks/chef_client_updater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
17 lines (14 loc) · 831 Bytes
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name 'chef_client_updater'
maintainer 'Chef Software, Inc.'
maintainer_email '[email protected]'
license 'Apache-2.0'
description 'Upgrades chef-client to specified releases'
version '3.12.2'
chef_version '>= 11' if respond_to?(:chef_version) # cookstyle: disable ChefModernize/RespondToInMetadata
%w(amazon centos debian mac_os_x opensuseleap oracle redhat scientific solaris2 suse ubuntu windows aix).each do |os|
supports os
end
unless defined?(Ridley) # cookstyle: disable ChefModernize/RespondToInMetadata
source_url 'https://github.com/chef-cookbooks/chef_client_updater' if respond_to?(:source_url) # cookstyle: disable ChefModernize/RespondToInMetadata
issues_url 'https://github.com/chef-cookbooks/chef_client_updater/issues' if respond_to?(:issues_url) # cookstyle: disable ChefModernize/RespondToInMetadata
end