mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
More correct fix for status problem (#41045)
Status is not being determined right when monitors are enabled but the state is up or down. This patch fixes it.
This commit is contained in:
parent
c65f3fdca6
commit
033adf8cd5
1 changed files with 3 additions and 1 deletions
|
@ -465,7 +465,7 @@ class ApiParameters(Parameters):
|
|||
def state(self):
|
||||
if self._values['state'] in ['user-up', 'unchecked', 'fqdn-up-no-addr'] and self._values['session'] in ['user-enabled']:
|
||||
return 'present'
|
||||
elif self._values['state'] == 'down' and self._values['session'] == 'monitor-enabled':
|
||||
elif self._values['state'] in ['down', 'up'] and self._values['session'] == 'monitor-enabled':
|
||||
return 'present'
|
||||
elif self._values['state'] in ['user-down'] and self._values['session'] in ['user-disabled']:
|
||||
return 'forced_offline'
|
||||
|
@ -522,6 +522,8 @@ class ReportableChanges(Changes):
|
|||
def state(self):
|
||||
if self._values['state'] in ['user-up', 'unchecked', 'fqdn-up-no-addr'] and self._values['session'] in ['user-enabled']:
|
||||
return 'present'
|
||||
elif self._values['state'] in ['down', 'up'] and self._values['session'] == 'monitor-enabled':
|
||||
return 'present'
|
||||
elif self._values['state'] in ['user-down'] and self._values['session'] in ['user-disabled']:
|
||||
return 'forced_offline'
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue