From 269f2aa10111a3b0af24a038f36d5a587146e4dc Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Thu, 17 Dec 2015 09:23:21 +0200
Subject: [PATCH] Corrected stunnel OpenBSD pkg install (used OS family instead
 of release version).

---
 tasks/stunnel.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tasks/stunnel.yml b/tasks/stunnel.yml
index ae5652c..c404d76 100644
--- a/tasks/stunnel.yml
+++ b/tasks/stunnel.yml
@@ -14,7 +14,7 @@
 - name: pkg install stunnel
   when: ansible_pkg_mgr == 'openbsd_pkg'
   openbsd_pkg:
-    name: '{{ openbsd_stunnel_version[ansible_os_family] }}'
+    name: '{{ openbsd_stunnel_version[ansible_distribution_release] }}'
     state: present
 
 - name: Configure stunnel
-- 
GitLab