From 26c984af3af53f0b7b312663a753a20c8d04d034 Mon Sep 17 00:00:00 2001 From: Hinrikus Wolf <hinrikus@fsmpi.rwth-aachen.de> Date: Thu, 16 Jan 2020 20:22:00 +0100 Subject: [PATCH] fix linter errors --- uwsgi-python/tasks/app.yml | 3 ++- uwsgi-python/tasks/apps/gl-rt-bridge.yml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/uwsgi-python/tasks/app.yml b/uwsgi-python/tasks/app.yml index 9defe2f..9760086 100644 --- a/uwsgi-python/tasks/app.yml +++ b/uwsgi-python/tasks/app.yml @@ -191,6 +191,7 @@ notify: - "restart uwsgi instance {{ app.instance }}" when: + # yamllint disable-line rule:line-length - (app_deploy_key is not defined) or (not app_deploy_key|string != '') # noqa 602 - (app_git_pip is not defined) or (not app_git_pip) register: git @@ -239,7 +240,7 @@ file: path: "{{ item }}" state: directory - mode: 0775 + mode: "0775" owner: "{{ app_user }}" loop: - "{{ app_path }}/.bundle" diff --git a/uwsgi-python/tasks/apps/gl-rt-bridge.yml b/uwsgi-python/tasks/apps/gl-rt-bridge.yml index 3406ad9..5987360 100644 --- a/uwsgi-python/tasks/apps/gl-rt-bridge.yml +++ b/uwsgi-python/tasks/apps/gl-rt-bridge.yml @@ -5,4 +5,4 @@ name: "{{ app_home }}/RT_Client.{{ gl_rt_bridge.rt_user }}.cookie" state: touch owner: "{{ app_user }}" - mode: 0600 + mode: "0600" -- GitLab