cookbook 'known_host', '= 0.1.0'
The known_host cookbook has been deprecated
Author provided reason for deprecation:
The known_host cookbook has been deprecated and is no longer being maintained by its authors. Use of the known_host cookbook is no longer recommended.
You may find that the ssh_known_hosts cookbook is a suitable alternative.
known_host (4) Versions 0.1.0 Follow3
LWRP for adding keys to the ssh_known_hosts file
cookbook 'known_host', '= 0.1.0', :supermarket
knife supermarket install known_host
knife supermarket download known_host
Chef known_host LWRP
The Chef known_host
LWRP exposes an LWRP for adding hosts and keys to the /etc/ssh_known_hosts
file.
Requirements
An operating system that supports /etc/ssh_known_hosts
Usage
This LWRP is pretty freakin' simple:
known_host 'github.com'
This will append an entry in /etc/ssh_known_hosts
like this:
# github.com SSH-2.0-OpenSSH_5.5p1 Debian-6+squeeze1+github8 github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==
You can optionally specify your own key, if you don't want to use ssh-keyscan
:
known_host 'github.com' do key 'node.example.com ssh-rsa ...' end
LWRP Attributes
<table>
<thead>
<tr>
<th>Attribute</th>
<th>Description</th>
<th>Example</th>
<th>Default</th>
</tr>
</thead>
<tbody>
<tr>
<td>host</td>
<td>the host to add</td>
<td><tt>github.com</tt></td>
<td></td>
</tr>
<tr>
<td>key</td>
<td>(optional) provide your own key</td>
<td><tt>ssh-rsa ...</tt></td>
<td>ssh-keyscan -H #{host}
</td>
</tr>
</tbody>
</table>
License and Author
- Author:: Seth Vargo (sethvargo@gmail.com)
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.
Dependent cookbooks
This cookbook has no specified dependencies.
Contingent cookbooks
There are no cookbooks that are contingent upon this one.