mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 14:20:22 -07:00
Adds module to manage cookie persistence profiles in BIG-IP (#47786)
This commit is contained in:
parent
7336dd595b
commit
10f3e0c187
4 changed files with 945 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue