Set appropriate branch key in _horizon_translations_pull

Once branch is defined in _horizon_translations_pull, variable
horizon_translations_project_version was not influencing anyhow on the
pull process, as it was set as default variable, when branch not defined

With this change horizon_translations_project_version was set as
branch in vars, with default value of master.

Change-Id: I4a9c3b2bdc442b5cbcc28672931190c53023ab82
This commit is contained in:
Dmitriy Rabotjagov 2019-02-28 12:39:17 +02:00 committed by Dmitriy Rabotjagov (noonedeadpunk)
parent 60ae573179
commit 52ca70be38
2 changed files with 8 additions and 8 deletions

View File

@ -14,14 +14,14 @@
# limitations under the License.
- name: Perform a Zanata Pull Catalog
command: "{{ horizon_manage }} pull_catalog -p {{ translation.project }} -m {{ translation.module }} -b {{ (translation.branch | default(horizon_translations_project_version)) | replace('/', '-') }}"
command: "{{ horizon_manage }} pull_catalog -p {{ translation.project }} -m {{ translation.module }} -b {{ (translation.branch | default('master')) | replace('/', '-') }}"
args:
chdir: "{{ horizon_lib_dir }}/"
with_items: "{{ horizon_translations_pull }}"
loop_control:
loop_var: translation
when:
- translation.enabled | bool
- (translation.enabled | default("True")) | bool
notify:
- Compile messages
- Restart apache2

View File

@ -15,29 +15,29 @@
_horizon_translations_pull:
- project: "horizon"
branch: master
branch: "{{ horizon_translations_project_version }}"
enabled: True
module:
- horizon
- openstack_auth
- openstack_dashboard
- project: "designate-dashboard"
branch: master
branch: "{{ horizon_translations_project_version }}"
enabled: True
module: designatedashboard
- project: "sahara-dashboard"
branch: master
branch: "{{ horizon_translations_project_version }}"
enabled: True
module: sahara_dashboard
- project: "heat-dashboard"
branch: master
branch: "{{ horizon_translations_project_version }}"
enabled: "{{ horizon_enable_heat_ui }}"
module: heat_dashboard
- project: "magnum-ui"
branch: master
branch: "{{ horizon_translations_project_version }}"
enabled: True
module: magnum_ui
- project: "trove-dashboard"
branch: master
branch: "{{ horizon_translations_project_version }}"
enabled: True
module: trove_dashboard