From 9988503223eaf6c594b3e445b430a8e11d3dcb00 Mon Sep 17 00:00:00 2001
From: Michal Jankowski <mjankowski@vmware.com>
Date: Thu, 25 Oct 2018 15:32:41 -0700
Subject: [PATCH] Fixing 1.3.7 on 1.11 master.

With multiple test items operator defaults to "and". In case of 1.3.7
the tests check whether --address flag is either set to 127.0.0.1 or not
set at all. Those conditions cannot be met at the same time.
---
 cfg/1.11/master.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/cfg/1.11/master.yaml b/cfg/1.11/master.yaml
index fdb89f5..0f7f9b3 100644
--- a/cfg/1.11/master.yaml
+++ b/cfg/1.11/master.yaml
@@ -790,6 +790,7 @@ groups:
     text: "Ensure that the --address argument is set to 127.0.0.1 (Scored)"
     audit: "ps -ef | grep $controllermanagerbin | grep -v grep"
     tests:
+      bin_op: or
       test_items:
       - flag: "--address"
         compare:
-- 
GitLab