ansible/tasks/happy_birthday.yml

11 lines
270 B
YAML
Raw Normal View History

---
- name: gather ssh host key from new instance
local_action: command ssh-keyscan -t rsa {{ inventory_hostname }}
ignore_errors: true
register: hostkey
2017-12-07 01:31:17 +00:00
when: birthday is defined
- name: Include basessh
include_role: name=basessh
2017-12-07 01:31:17 +00:00
when: birthday is defined