Add missing / for log server path

Fix a typo in our log pulishing.

Change-Id: Ic660e475878ac7e872f630faa15e3f71118e3dab
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2017-07-14 10:06:09 -04:00
parent 51aa805025
commit 3bdb8935b8
No known key found for this signature in database
GPG Key ID: 611A80832067AF38
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
- name: Create log directories
file:
path: "{{zuul_logserver_root}}{{ log_path }}"
path: "{{zuul_logserver_root}}/{{ log_path }}"
state: directory
recurse: yes
mode: 0775
@ -18,5 +18,5 @@
- name: Upload logs to log server
synchronize:
src: "{{ zuul.executor.log_root }}/"
dest: "{{zuul_logserver_root}}{{ log_path }}/"
dest: "{{zuul_logserver_root}}/{{ log_path }}/"
no_log: true