From 7291dff171d5bf356899f25589a9fc69920b6893 Mon Sep 17 00:00:00 2001 From: Sagi Shnaidman Date: Thu, 12 Jul 2018 16:23:46 +0300 Subject: [PATCH] Fix syntax error in post playbook Change-Id: Ic793cf2551de8aa310479bad61b837022b782138 --- .../legacy-tripleo-ci-periodic-base-upload/post.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/playbooks/legacy-tripleo-ci-periodic-base-upload/post.yaml b/playbooks/legacy-tripleo-ci-periodic-base-upload/post.yaml index 2d7e2c7f83..8aeee83cbc 100644 --- a/playbooks/legacy-tripleo-ci-periodic-base-upload/post.yaml +++ b/playbooks/legacy-tripleo-ci-periodic-base-upload/post.yaml @@ -1,7 +1,7 @@ - hosts: all tasks: - block: + - block: - name: Create SSH private key tempfile tempfile: @@ -31,8 +31,8 @@ chdir: '{{ ansible_user_dir }}/workspace' environment: '{{ zuul | zuul_legacy_vars }}' - always: - - name: remove ssh key - command: ssh-add -D + always: + - name: remove ssh key + command: ssh-add -D - when: zuul_success|bool \ No newline at end of file + when: zuul_success|bool \ No newline at end of file