From 9477f294329cab09fb811abe781f3e552d698454 Mon Sep 17 00:00:00 2001 From: weslambert Date: Thu, 8 Dec 2022 17:06:43 -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', '') }}