mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixes an fqdn error (#31745)
the pool module was not correctly interpreting the partitions in the monitors list vs the partition at the task level. This patch fixes that.
This commit is contained in:
parent
02cd881697
commit
6e6a6ff36b
1 changed files with 4 additions and 7 deletions
|
@ -110,7 +110,7 @@ options:
|
|||
default: Common
|
||||
version_added: 2.5
|
||||
notes:
|
||||
- Requires BIG-IP software version >= 11.
|
||||
- Requires BIG-IP software version >= 12.
|
||||
- F5 developed module 'F5-SDK' required (https://github.com/F5Networks/f5-common-python).
|
||||
- Best run as a local_action in your playbook.
|
||||
requirements:
|
||||
|
@ -399,12 +399,9 @@ class Parameters(AnsibleF5Parameters):
|
|||
return lb_method
|
||||
|
||||
def _fqdn_name(self, value):
|
||||
if value.startswith('/'):
|
||||
name = os.path.basename(value)
|
||||
result = '/{0}/{1}'.format(self.partition, name)
|
||||
else:
|
||||
result = '/{0}/{1}'.format(self.partition, value)
|
||||
return result
|
||||
if value is not None and not value.startswith('/'):
|
||||
return '/{0}/{1}'.format(self.partition, value)
|
||||
return value
|
||||
|
||||
@property
|
||||
def monitors_list(self):
|
||||
|
|
Loading…
Reference in a new issue