From 0620acb44df181a7e08b411482645ed66384741d Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Sun, 16 Apr 2017 20:46:35 +0300
Subject: [PATCH] - Remove OpenBSD 5.9 platform from testing, it never worked
 and it's not supported upstream anymore now that OpenBSD 6.1 was released.

---
 .travis.yml    | 2 --
 molecule.yml   | 2 --
 tasks/main.yml | 2 +-
 tox.ini        | 2 +-
 4 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index cf2d8cd..5849002 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,7 +10,6 @@ env:
     matrix:
         - TOXENV=pre-commit
         - TOXENV=openbsd60
-        - &openbsd59 TOXENV=openbsd59
         - TOXENV=xenial
         - TOXENV=trusty
         - TOXENV=precise
@@ -21,7 +20,6 @@ matrix:
     fast_finish: True
     allow_failures:
         - python: "3.5"
-        - env: *openbsd59
         - env: *stretch
         - env: *jessie
 cache:
diff --git a/molecule.yml b/molecule.yml
index da87f7a..466e58a 100644
--- a/molecule.yml
+++ b/molecule.yml
@@ -22,8 +22,6 @@ vagrant:
   platforms:
   - name: openbsd60
     box: fnichol/openbsd-6.0-i386
-  - name: openbsd59
-    box: fnichol/openbsd-5.9-i386
   - name: xenial
     box: ubuntu/xenial32
   - name: trusty
diff --git a/tasks/main.yml b/tasks/main.yml
index b338f6b..0ab13c5 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -5,4 +5,4 @@
   assert:
     that:
         - ansible_os_family in ['OpenBSD', 'Debian']
-        - ansible_distribution_release in ['xenial', 'trusty', 'precise', 'stretch', 'jessie', 'wheezy'] or ansible_distribution_version in ['6.0', '5.9']
+        - ansible_distribution_release in ['xenial', 'trusty', 'precise', 'stretch', 'jessie', 'wheezy'] or ansible_distribution_version in ['6.0']
diff --git a/tox.ini b/tox.ini
index 112a264..cd0873a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,7 +1,7 @@
 [tox]
 skip_install = True
 skipsdist = True
-envlist = openbsd60,openbsd59,xenial,trusty,precise,stretch,jessie,wheezy
+envlist = openbsd60,xenial,trusty,precise,stretch,jessie,wheezy
 
 [testenv]
 envdir = {toxinidir}/.tox
-- 
GitLab