Fix variable

The variable used by quickstart is local_working_dir instead of
local_working_directory

Change-Id: I3aea7903841716e0314232c156ed70b7dfa21a45
This commit is contained in:
Arx Cruz 2020-07-29 10:59:54 +02:00
parent 2d3ba83004
commit 94cd576059
2 changed files with 2 additions and 2 deletions

View File

@ -2,6 +2,6 @@
# Path for the tempest skip
# tempest_skip_path:
_zuul_path: "{{ zuul.projects['opendev.org/openstack/openstack-tempest-skiplist'].src_dir | default('') }}"
_local_path: "{{ local_working_directory | default('') }}/usr/local/share/ansible"
_local_path: "{{ local_working_dir | default('') }}/usr/local/share/ansible"
tempest_skip_path: "{{ (zuul is defined) | ternary(_zuul_path, _local_path) }}"
list_skipped_yaml_file: "{{ tempest_skip_path }}/roles/validate-tempest/vars/tempest_skip.yml"

View File

@ -3,6 +3,6 @@
# list_skipped_job: tripleo-ci-centos-8-containers-multinode
# list_skipped_release: master
_zuul_path: "{{ zuul.projects['opendev.org/openstack/openstack-tempest-skiplist'].src_dir | default('') }}"
_local_path: "{{ local_working_directory | default('') }}/usr/local/share/ansible"
_local_path: "{{ local_working_dir | default('') }}/usr/local/share/ansible"
tempest_skip_path: "{{ (zuul is defined) | ternary(_zuul_path, _local_path) }}"
list_skipped_yaml_file: "{{ tempest_skip_path }}/roles/validate-tempest/vars/tempest_skip.yml"