idempotent checkout
This commit is contained in:
parent
5004338638
commit
ca48208928
@ -107,15 +107,20 @@
|
||||
name: nginx
|
||||
state: reloaded
|
||||
|
||||
- name: "Remove any existing static file directories"
|
||||
ansible.builtin.file:
|
||||
path: "{{ item.directory }}"
|
||||
state: absent
|
||||
with_items: "{{ static }}"
|
||||
|
||||
- name: "Checkout static websites from git"
|
||||
ansible.builtin.git:
|
||||
force: true
|
||||
repo: "{{ item.repo }}"
|
||||
dest: "{{ item.directory }}"
|
||||
with_items: "{{ static }}"
|
||||
|
||||
- name: "Remove .git directory from static websites"
|
||||
ansible.builtin.file:
|
||||
path: "{{ item.directory}}/.git"
|
||||
path: "{{ item.directory }}/.git"
|
||||
state: absent
|
||||
with_items: "{{ static }}"
|
||||
|
Loading…
Reference in New Issue
Block a user