Browse Source

Merge pull request #7788 from mgugino-upstream-stage/sanity-sdn-fix

Allow no sdn's to be specified in sanity checks
Michael Gugino 7 years ago
parent
commit
411e898c68
1 changed files with 1 additions and 1 deletions
  1. 1 1
      roles/lib_utils/action_plugins/sanity_checks.py

+ 1 - 1
roles/lib_utils/action_plugins/sanity_checks.py

@@ -133,7 +133,7 @@ class ActionModule(ActionBase):
                 res_temp = default_val
             res.append(to_bool(res_temp))
 
-        if sum(res) != 1:
+        if sum(res) not in (0, 1):
             plugin_str = list(zip([x[0] for x in NET_PLUGIN_LIST], res))
 
             msg = "Host Checked: {} Only one of must be true. Found: {}".format(host, plugin_str)