mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Fix module._name comparisons to also consider FQCNs. (#230)
This commit is contained in:
@@ -105,7 +105,7 @@ def main():
|
||||
argument_spec,
|
||||
supports_check_mode=True,
|
||||
)
|
||||
if module._name == 'intersight_facts':
|
||||
if module._name in ('intersight_facts', 'community.general.intersight_facts'):
|
||||
module.deprecate("The 'intersight_facts' module has been renamed to 'intersight_info'", version='2.13')
|
||||
|
||||
intersight = IntersightModule(module)
|
||||
|
||||
Reference in New Issue
Block a user