Make the task that remove the remote idempotent

The current implementation of the task is not idempotent.
That's fine in CI but when running locally it forces a cleanup
of the environment every time.

Change-Id: Ifdb573bc09ddb2d39674218e9f631e8c15f936cb
This commit is contained in:
Andrea Frittoli 2018-03-05 23:19:39 +00:00
parent ab137633d3
commit cf1ae5235b
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,8 @@
- skip_ansible_lint
- name: Remove origin from local git repos
command: "git remote rm origin"
# To be idempotent, remove origin only if it's found in the local list.
shell: "git remote -v | grep origin && git remote rm origin || true"
args:
chdir: "{{ ansible_user_dir }}/{{ item.src_dir}}"
with_items: "{{ zuul.projects.values() | list }}"