mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.4 KiB
YAML
55 lines
1.4 KiB
YAML
8 years ago
|
---
|
||
|
|
||
|
- name: remove known_host files
|
||
|
file:
|
||
|
state: absent
|
||
|
path: '{{ item }}'
|
||
|
with_items: "{{known_host_files}}"
|
||
|
|
||
|
- name: checkout ssh://git@github.com repo without accept_hostkey (expected fail)
|
||
|
git:
|
||
|
repo: '{{ repo_format2 }}'
|
||
|
dest: '{{ checkout_dir }}'
|
||
|
register: git_result
|
||
|
ignore_errors: true
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- 'git_result.failed'
|
||
|
- 'git_result.msg == "github.com has an unknown hostkey. Set accept_hostkey to True or manually add the hostkey prior to running the git module"'
|
||
|
|
||
|
- name: checkout git@github.com repo with accept_hostkey (expected pass)
|
||
|
git:
|
||
|
repo: '{{ repo_format2 }}'
|
||
|
dest: '{{ checkout_dir }}'
|
||
|
accept_hostkey: true
|
||
|
key_file: '{{ github_ssh_private_key }}'
|
||
|
register: git_result
|
||
|
when: github_ssh_private_key is defined
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- 'git_result.changed'
|
||
|
when: not git_result|skipped
|
||
|
|
||
|
|
||
|
- name: clear checkout_dir
|
||
|
file:
|
||
|
state: absent
|
||
|
path: '{{ checkout_dir }}'
|
||
|
|
||
|
- name: checkout ssh://git@github.com repo with accept_hostkey (expected pass)
|
||
|
git:
|
||
|
repo: '{{ repo_format3 }}'
|
||
|
dest: '{{ checkout_dir }}'
|
||
|
version: 'master'
|
||
|
accept_hostkey: false # should already have been accepted
|
||
|
key_file: '{{ github_ssh_private_key }}'
|
||
|
register: git_result
|
||
|
when: github_ssh_private_key is defined
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- 'git_result.changed'
|
||
|
when: not git_result|skipped
|