Reported by gundalow, this fixes pylint errors in F5 modules
(cherry picked from commit 780b2f2c84
)
This commit is contained in:
parent
dbe83cc099
commit
ac9bb4df8e
3 changed files with 9 additions and 13 deletions
|
@ -320,7 +320,7 @@ class BigIpGtmDatacenter(object):
|
|||
enabled = self.params['enabled']
|
||||
|
||||
if state is None and enabled is None:
|
||||
module.fail_json(msg="Neither 'state' nor 'enabled' set")
|
||||
raise F5ModuleError("Neither 'state' nor 'enabled' set")
|
||||
|
||||
try:
|
||||
if state == "present":
|
||||
|
|
|
@ -476,18 +476,12 @@ class BigIpRouteDomain(object):
|
|||
result = dict()
|
||||
state = self.params['state']
|
||||
|
||||
if self.params['check_mode']:
|
||||
if value == current:
|
||||
changed = False
|
||||
else:
|
||||
changed = True
|
||||
else:
|
||||
if state == "present":
|
||||
changed = self.present()
|
||||
current = self.read()
|
||||
result.update(current)
|
||||
elif state == "absent":
|
||||
changed = self.absent()
|
||||
if state == "present":
|
||||
changed = self.present()
|
||||
current = self.read()
|
||||
result.update(current)
|
||||
elif state == "absent":
|
||||
changed = self.absent()
|
||||
|
||||
result.update(dict(changed=changed))
|
||||
return result
|
||||
|
|
|
@ -444,6 +444,8 @@ class BigIpSslCertificate(object):
|
|||
|
||||
def delete(self):
|
||||
changed = False
|
||||
name = self.params['name']
|
||||
partition = self.params['partition']
|
||||
|
||||
check_mode = self.params['check_mode']
|
||||
|
||||
|
|
Loading…
Reference in a new issue