From 6cd8e36da0b225bb1bc8e11d55c3c96602dcdbbd Mon Sep 17 00:00:00 2001
From: Andre Sencioles <asenci@gmail.com>
Date: Tue, 13 Aug 2019 12:17:22 +1200
Subject: [PATCH] Fix typo in repo.sls

---
 mysql/repo.sls | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mysql/repo.sls b/mysql/repo.sls
index d817107..63d01ec 100644
--- a/mysql/repo.sls
+++ b/mysql/repo.sls
@@ -6,7 +6,7 @@ include:
 # Completely ignore non-RHEL based systems
 # TODO: Add Debian and Suse systems.
 # TODO: Allow user to specify MySQL version and alter yum repo file accordingly.
-{% if grains['os_family'] == 'RedHat' and `osmajorrelease` in grains %}
+{% if grains['os_family'] == 'RedHat' and 'osmajorrelease' in grains %}
   {% if grains['osmajorrelease']|int == 5 %}
   {% set rpm_source = "http://repo.mysql.com/mysql57-community-release-el5.rpm" %}
   {% elif grains['osmajorrelease']|int == 6 %}
-- 
GitLab