6832d5dd41
The playbook `playbooks/repo-clone-mirror.yml` was not cloning the repo from the upstream mirror correctly it was specifically not respecting symlinks and in some situations, if the user was using xattrs, hard links, or acls the clone operation would cause other issues. The `openstack-branch-grabber.py` was removed as the entire process of looping through all of the branches and tags and rebuilding all of the wheels is no longer relevant. As such this process was removed in favor of forcing the build process to specify a release. The `openstack-wheel-builder.py` script was updated to enforce the updating/cloning of the git sources. Closes-Bug: 1441812 Change-Id: Ibdac88607ffea57ab380f539f3f52346f15792ca
39 lines
1.6 KiB
YAML
39 lines
1.6 KiB
YAML
---
|
|
# Copyright 2014, Rackspace US, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# This play was built to seed an environment with packages that may be used
|
|
# from within the environment as found from a given mirror_source_host.
|
|
# Currently the mirror source host is set to the Rackspace build servers but
|
|
# could be targeted to wherever you'd like.
|
|
- name: Cloning the upstream repo mirror
|
|
hosts: repo_all[0]
|
|
max_fail_percentage: 20
|
|
gather_facts: false
|
|
user: root
|
|
tasks:
|
|
- name: Sync the upstream repo(s)
|
|
shell: |
|
|
rsync -avzlHAX \
|
|
--exclude="{{ mirror_excludes }}" \
|
|
{{ mirror_source_host }}::{{ mirror_name }} {{ mirror_path }}
|
|
sudo: yes
|
|
sudo_user: "{{ repo_service_user_name }}"
|
|
vars:
|
|
mirror_excludes: "{{ repo_mirror_excludes|default('repos/* mirror/* rpcgit/* openstackgit/*') }}"
|
|
mirror_path: "{{ repo_service_home_folder }}/repo"
|
|
mirror_name: "{{ repo_mirror_name|default('openstack_mirror') }}"
|
|
mirror_source_host: "{{ repo_mirror_source_host|default('rpc-repo.rackspace.com') }}"
|
|
is_metal: "{{ properties.is_metal|default(false) }}"
|