Merge "Updated for a couple nits"

This commit is contained in:
Jenkins
2015-10-23 09:35:36 +00:00
committed by Gerrit Code Review
2 changed files with 1 additions and 4 deletions

View File

@@ -12,6 +12,3 @@ Role to deploy a repository build for both python packages and git sources.
user: root
roles:
- { role: "repo_build", tags: [ "repo-build" ] }
vars:
memcached_builds: 127.0.0.1:11211
memcached_encryption_key: secrete

View File

@@ -2,7 +2,7 @@
{% set constraint_pkgs = [] -%}
{% for clone_item in cloned_repos.stdout_lines -%}
git+file://{{ clone_item }}#egg={{ clone_item | git_link_parse_name | replace('-', '_') | lower }}
{% if constraint_pkgs.append(clone_item | git_link_parse_name | replace('-', '_') | lower) %}{% endif %}
{% set _ = constraint_pkgs.append(clone_item | git_link_parse_name | replace('-', '_') | lower) %}
{% endfor %}
# upper boundry constraints from requirements repo.
{% for constraint_item in upper_constraints %}