mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
15 lines
314 B
YAML
15 lines
314 B
YAML
|
---
|
||
|
# Test a non-updating repo query with no destination specified
|
||
|
|
||
|
- name: get info on a repo without updating and with no destination specified
|
||
|
git:
|
||
|
repo: '{{ repo_dir }}/minimal'
|
||
|
update: no
|
||
|
clone: no
|
||
|
accept_hostkey: yes
|
||
|
register: git_result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- 'git_result.changed'
|