From: Thanh Ha Date: Sat, 11 May 2019 02:07:21 +0000 (-0400) Subject: Fix yamllint: variable spaces before and after X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=commitdiff_plain;h=b0950f7c60adeabcf3df75d924fed3a328df13a5;p=ansible%2Froles%2Fprotobuf-install.git Fix yamllint: variable spaces before and after Signed-off-by: Thanh Ha Change-Id: Ic7279f19adf855002f050ae9568d87dcb1e6a6ab --- diff --git a/tasks/main.yml b/tasks/main.yml index 66ead18..a7a3b92 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,18 +1,18 @@ --- -- name: 'Download protoc binary {{protobuf_version}}' +- name: 'Download protoc binary {{ protobuf_version }}' get_url: - url: https://github.com/google/protobuf/releases/download/v{{protobuf_version}}/protoc-{{protobuf_version}}-linux-x86_64.zip - dest: /tmp/protobuf-{{protobuf_version}}-linux-x86_64.zip - checksum: '{{protoc_checksum}}' + url: https://github.com/google/protobuf/releases/download/v{{ protobuf_version }}/protoc-{{ protobuf_version }}-linux-x86_64.zip + dest: /tmp/protobuf-{{ protobuf_version }}-linux-x86_64.zip + checksum: '{{ protoc_checksum }}' - name: Ensure protoc unpack directory exists file: path: /tmp/protoc state: directory -- name: 'Unarchive protoc {{protobuf_version}} binary' +- name: 'Unarchive protoc {{ protobuf_version }} binary' unarchive: - src: /tmp/protobuf-{{protobuf_version}}-linux-x86_64.zip + src: /tmp/protobuf-{{ protobuf_version }}-linux-x86_64.zip dest: /tmp/protoc remote_src: true