33 lines
923 B
YAML
33 lines
923 B
YAML
- name: Make sure git is installed
|
|
apt: name=git-core state=latest
|
|
|
|
- name: clone the Ansible MAIN repo
|
|
git: clone=yes
|
|
dest=/home/ansible/ansible-main-repo
|
|
repo=git@src.dualinventive.com:devops/ansible.git
|
|
update=yes
|
|
become: false
|
|
|
|
- name: clone the Ansible DTAP repo
|
|
git: clone=yes
|
|
dest=/home/ansible/ansible-repo
|
|
repo=git@src.dualinventive.com:devops/ansible-dtap.git
|
|
update=yes
|
|
become: false
|
|
|
|
- name: clone the Ansible DTAP repo for testing
|
|
git: clone=yes
|
|
version=testing
|
|
dest=/home/ansible/ansible-repo-testing
|
|
repo=git@src.dualinventive.com:devops/ansible-dtap.git
|
|
update=yes
|
|
become: false
|
|
|
|
- name: clone the Ansible DTAP repo for acceptation
|
|
git: clone=yes
|
|
version=acceptation
|
|
dest=/home/ansible/ansible-repo-acceptation
|
|
repo=git@src.dualinventive.com:devops/ansible-dtap.git
|
|
update=yes
|
|
become: false
|