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
commit 10f3e0c187
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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