15 lines
612 B
YAML
15 lines
612 B
YAML
---
|
|
####################################################################
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
####################################################################
|
|
|
|
- name: Include OS-specific variables
|
|
include_vars: '{{ ansible_os_family }}.yml'
|
|
when: not ansible_os_family == "Darwin" and not ansible_os_family == "FreeBSD"
|
|
|
|
- name: Install ssh-keygen
|
|
package:
|
|
name: '{{ openssh_client_package_name }}'
|
|
when: not ansible_os_family == "Darwin" and not ansible_os_family == "FreeBSD"
|