mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
Adds module to manage cookie persistence profiles in BIG-IP (#47786)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user