From 660c8716e6e82fabb5da0f89fcff6a5f46244fca Mon Sep 17 00:00:00 2001
From: Dennis Ahrens <dennis.ahrens@hs-hannover.de>
Date: Thu, 30 Jun 2022 14:35:55 +0200
Subject: [PATCH] Fixes the if statement introduced by the last commit after
 testing

---
 deploy/user.sls | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/deploy/user.sls b/deploy/user.sls
index 611a44b..9e240a8 100644
--- a/deploy/user.sls
+++ b/deploy/user.sls
@@ -4,7 +4,7 @@ deployer:
   user.absent: []
   group.absent: []
 
-{% if salt.pillar.get('deploy:config:key:', None) is not None %}
+{% if salt.pillar.get('deploy:config:key:', False) %}
 
 deploy_user_ssh_known_hosts_file_present:
   file.managed:
-- 
GitLab