Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update ansible git to only clone when repo isn't there #95

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading