From 61cbaeae443a65dd3d5df172414e1dd67e0aafa7 Mon Sep 17 00:00:00 2001 From: Andreas Hamacher <andreas.hamacher@monash.edu> Date: Thu, 6 May 2021 05:54:50 +0000 Subject: [PATCH] fixes for lint. no changes to logic --- roles/slurm-common/tasks/installSlurmFromSource.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/roles/slurm-common/tasks/installSlurmFromSource.yml b/roles/slurm-common/tasks/installSlurmFromSource.yml index f87bbd8e..4885cb68 100644 --- a/roles/slurm-common/tasks/installSlurmFromSource.yml +++ b/roles/slurm-common/tasks/installSlurmFromSource.yml @@ -28,8 +28,8 @@ register: stat_ucx - name: Create ucx directory if it does not exist - ansible.builtin.file: - path: /usr/local/ucx/ + file: + path: '/usr/local/ucx/' state: directory owner: damienl group: systems @@ -48,9 +48,9 @@ register: newucx - name: symlink ucx to latest - ansible.builtin.file: - src: /usr/local/ucx/1.8.0 - dest: /usr/local/ucx/latest + file: + src: '/usr/local/ucx/1.8.0' + dest: '/usr/local/ucx/latest' state: link owner: damienl group: systems -- GitLab