mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Updated listen_ports_facts documentation (#301)
Updated listen_ports_facts module documentation to reflect - Linux only support - Required netstat command Fixes: ansible/ansible#68077 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
3552db1cac
commit
5cdb646ab7
2 changed files with 6 additions and 5 deletions
2
changelogs/fragments/listen_ports_facts_doc.yml
Normal file
2
changelogs/fragments/listen_ports_facts_doc.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
minor_changes:
|
||||||
|
- Updated documentation about netstat command requirement for listen_ports_facts module (https://github.com/ansible/ansible/issues/68077).
|
|
@ -14,14 +14,13 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||||
DOCUMENTATION = r'''
|
DOCUMENTATION = r'''
|
||||||
---
|
---
|
||||||
module: listen_ports_facts
|
module: listen_ports_facts
|
||||||
|
|
||||||
author:
|
author:
|
||||||
- Nathan Davison (@ndavison)
|
- Nathan Davison (@ndavison)
|
||||||
|
|
||||||
|
|
||||||
description:
|
description:
|
||||||
- Gather facts on processes listening on TCP and UDP ports.
|
- Gather facts on processes listening on TCP and UDP ports using netstat command.
|
||||||
|
- This module currently supports Linux only.
|
||||||
|
requirements:
|
||||||
|
- netstat
|
||||||
short_description: Gather facts on processes listening on TCP and UDP ports.
|
short_description: Gather facts on processes listening on TCP and UDP ports.
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue