Skip to content

Commit

Permalink
update ansible git to only clone when repo isn't there (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
eriktaubeneck authored Nov 25, 2024
1 parent b08956f commit 232ada0
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion sidecar/ansible/provision.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,25 @@
command: python3.11 -m pip install --upgrade pip
become: yes

- name: Check if directory is a git repository
stat:
path: '{{ ansible_env.HOME }}/draft/.git'
register: git_repo

- name: Clone repository if it doesn't exist
git:
repo: 'https://github.com/private-attribution/draft.git'
dest: '{{ ansible_env.HOME }}/draft'
update: no
when: not git_repo.stat.exists


- name: Pull repository if it does exist
git:
repo: 'https://github.com/private-attribution/draft.git'
dest: '{{ ansible_env.HOME }}/draft'
clone: false
version: main
when: git_repo.stat.exists

- name: Create virtualenv if it doesn't exist
command: python3.11 -m venv .venv
Expand Down

0 comments on commit 232ada0

Please sign in to comment.