2015-11-19 09:43:58 +00:00
|
|
|
# update all mirrors currently served by grokmirror
|
|
|
|
|
2014-09-24 19:56:41 +00:00
|
|
|
- name: update grokmirror repos
|
2015-11-13 20:00:53 +00:00
|
|
|
hosts: taskotron-dev:taskotron-stg:taskotron-prod
|
2014-09-24 19:56:41 +00:00
|
|
|
sudo: true
|
|
|
|
sudo_user: "{{ grokmirror_user }}"
|
2014-11-03 19:58:53 +00:00
|
|
|
gather_facts: false
|
2014-09-24 19:56:41 +00:00
|
|
|
|
|
|
|
tasks:
|
2015-12-02 11:32:32 +00:00
|
|
|
- name: update grokmirror repos
|
|
|
|
command: chdir={{ grokmirror_basedir }}/{{ item.name }} git fetch origin {{ grokmirror_default_branch }}:{{ grokmirror_default_branch }}
|
2014-09-24 19:56:41 +00:00
|
|
|
with_items: grokmirror_repos
|
|
|
|
|