fix 1900 failures of the following case issue: `name[casing]: All names should start with an uppercase letter.` Signed-off-by: Ryan Lerch <rlerch@redhat.com>
10 lines
270 B
YAML
10 lines
270 B
YAML
---
|
|
- name: Gather ssh host key from new instance
|
|
local_action: command ssh-keyscan -t rsa {{ inventory_hostname }}
|
|
ignore_errors: true
|
|
register: hostkey
|
|
when: birthday is defined
|
|
|
|
- name: Include basessh
|
|
include_role: name=basessh
|
|
when: birthday is defined
|