forked from chef-cookbooks/ssh_known_hosts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
16 lines (14 loc) · 807 Bytes
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name 'ssh_known_hosts'
maintainer 'Chef Software, Inc.'
maintainer_email 'cookbooks@chef.io'
license 'Apache-2.0'
description 'Dyanmically generates /etc/ssh/ssh_known_hosts based on search indexes'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '5.2.1'
recipe 'ssh_known_hosts', 'Provides an LWRP for managing SSH known hosts. Also includes a recipe for automatically adding all nodes to the SSH known hosts.'
%w(ubuntu debian redhat centos suse opensuse opensuseleap scientific oracle amazon zlinux).each do |os|
supports os
end
source_url 'https://github.com/chef-cookbooks/ssh_known_hosts'
issues_url 'https://github.com/chef-cookbooks/ssh_known_hosts'
chef_version '>= 12.7' if respond_to?(:chef_version)