mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
added check mode spport to package_facts (#39801)
* added check mode spport to package_facts fixes #39789 * also service_facts
This commit is contained in:
@@ -192,7 +192,7 @@ def apt_package_list():
|
||||
# FIXME: add more listing methods
|
||||
def main():
|
||||
global module
|
||||
module = AnsibleModule(argument_spec=dict(manager=dict()))
|
||||
module = AnsibleModule(argument_spec=dict(manager=dict()), supports_check_mode=True)
|
||||
manager = module.params['manager']
|
||||
packages = {}
|
||||
results = {}
|
||||
|
||||
@@ -192,7 +192,7 @@ class SystemctlScanService(BaseService):
|
||||
|
||||
|
||||
def main():
|
||||
module = AnsibleModule(argument_spec=dict())
|
||||
module = AnsibleModule(argument_spec=dict(), supports_check_mode=True)
|
||||
service_modules = (ServiceScanService, SystemctlScanService)
|
||||
all_services = {}
|
||||
incomplete_warning = False
|
||||
|
||||
Reference in New Issue
Block a user