From f85fb5ecf9c622b99e0fdb758b3985101330b8ec Mon Sep 17 00:00:00 2001 From: weslambert Date: Thu, 8 Dec 2022 16:35:24 -0500 Subject: [PATCH] Remove double quotes to fix issue with file path sourcing from 'localfile.py' --- salt/sensoroni/files/analyzers/localfile/localfile.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/sensoroni/files/analyzers/localfile/localfile.yaml b/salt/sensoroni/files/analyzers/localfile/localfile.yaml index 8a2a9847c..19350f33f 100644 --- a/salt/sensoroni/files/analyzers/localfile/localfile.yaml +++ b/salt/sensoroni/files/analyzers/localfile/localfile.yaml @@ -1 +1 @@ -file_path: "{{ salt['pillar.get']('sensoroni:analyzers:localfile:file_path', '') }}" +file_path: {{ salt['pillar.get']('sensoroni:analyzers:localfile:file_path', '') }}