From f839f385539de16337208f7c88b79aaf5d9b946a Mon Sep 17 00:00:00 2001 From: William Wernert Date: Thu, 30 Jan 2020 12:40:39 -0500 Subject: [PATCH] Fix for jinja error --- salt/common/tools/sbin/so-status | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/salt/common/tools/sbin/so-status b/salt/common/tools/sbin/so-status index 3d086cccd..45b52ae35 100644 --- a/salt/common/tools/sbin/so-status +++ b/salt/common/tools/sbin/so-status @@ -15,6 +15,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +# {% raw %} + if ! [ $(id -u)=0 ]; then echo "This command must be run as root" exit 1 @@ -134,4 +136,6 @@ main() { printf "\n" } -main \ No newline at end of file +main + +# {% endraw %} \ No newline at end of file