a047fe0e4c
* Correct usage for shutil.rmtree Fix adds correct usage of shutil.rmtree in git module Fixes: #31225 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com> * Include archive tests so they get run * Use new include syntax * Cleanup syntax on git tests - use multi-line YAML - remove unneeded {{ }} around vars in conditionals - remove unneeded quotes - add task file name to task names for easier troubleshooting when things fail * Make archive tests work for RHEL/CentOS 6 The older versions of Jinja2 in RHEL/CentOS 6 required assertion tasks using the map filter to be skipped. The older version of git required gzip compression to be skipped on RHEL/CentOS 6. * Account for ansible_distribution_major_version missing
25 lines
703 B
YAML
25 lines
703 B
YAML
- name: RESET-ORIGIN | Clean up the directories
|
|
file:
|
|
state: absent
|
|
path: "{{ item }}"
|
|
with_items:
|
|
- "{{ repo_dir }}/origin"
|
|
- "{{ checkout_dir }}"
|
|
|
|
- name: RESET-ORIGIN | Create a directory
|
|
file:
|
|
name: "{{ repo_dir }}/origin"
|
|
state: directory
|
|
|
|
- name: RESET-ORIGIN | Initialise the repo with a file named origin,see github.com/ansible/ansible/pull/22502
|
|
shell: git init; echo "PR 22502" > origin; git add origin; git commit -m "PR 22502"
|
|
args:
|
|
chdir: "{{ repo_dir }}/origin"
|
|
|
|
- name: RESET-ORIGIN | Clone a git repo with file named origin
|
|
git:
|
|
repo: "{{ repo_dir }}/origin"
|
|
dest: "{{ checkout_dir }}"
|
|
remote: origin
|
|
update: no
|
|
register: status
|