From 1f79d940a6c843ffe893725fa4f908cfc885b3c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Douglas=20Mendiz=C3=A1bal?= Date: Tue, 1 Sep 2020 14:30:30 -0500 Subject: [PATCH] Ignore mode warning for unarchive We added "mode: preserve" to the unarchive task to make the linter happy, but it seems that it does not work as advertised as it gives an error that "preserve" is an invalid value. Change-Id: I0a9136857229411101028928948b69ad0f4ad921 --- tasks/main.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tasks/main.yaml b/tasks/main.yaml index e760f8d..c0fd359 100644 --- a/tasks/main.yaml +++ b/tasks/main.yaml @@ -11,11 +11,10 @@ dest: "{{ lunasa_client_working_dir }}/{{ lunasa_client_tarball_name }}" force: no -- name: Unpack tarball to working directory +- name: Unpack tarball to working directory # noqa 208 unarchive: src: "{{ lunasa_client_working_dir }}/{{ lunasa_client_tarball_name }}" dest: "{{ lunasa_client_working_dir }}" - mode: preserve creates: "{{ lunasa_client_working_dir }}/{{ lunasa_client_installer_path }}" remote_src: yes