Adds module to manage cookie persistence profiles in BIG-IP (#47786)

This commit is contained in:
Tim Rupp
2018-10-29 20:47:25 -07:00
committed by GitHub
parent 7336dd595b
commit 10f3e0c187
4 changed files with 945 additions and 0 deletions

View File

@@ -19,3 +19,12 @@ def cmp_simple_list(want, have):
if set(want) != set(have):
return want
return None
def cmp_str_with_none(want, have):
if want is None:
return None
if have is None and want == '':
return None
if want != have:
return want