From 21681daa015fd68b0eb085c0f57ede73c793cc0d Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Thu, 25 Jun 2020 14:34:46 +0300 Subject: [PATCH] modules: fix seealso sections (#581) --- plugins/lookup/etcd3.py | 2 +- plugins/modules/database/misc/redis.py | 2 +- plugins/modules/database/misc/redis_info.py | 2 +- plugins/modules/net_tools/hetzner_failover_ip.py | 2 +- plugins/modules/net_tools/hetzner_failover_ip_info.py | 2 +- plugins/modules/net_tools/hetzner_firewall.py | 2 +- plugins/modules/net_tools/hetzner_firewall_info.py | 2 +- plugins/modules/system/lvg.py | 6 +++--- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/plugins/lookup/etcd3.py b/plugins/lookup/etcd3.py index dbe1296529..5519250a70 100644 --- a/plugins/lookup/etcd3.py +++ b/plugins/lookup/etcd3.py @@ -92,7 +92,7 @@ DOCUMENTATION = ''' - The recommanded way to connect to etcd3 server is using C(ETCDCTL_ENDPOINT) environment variable and keep I(endpoints), I(host), and I(port) unused. seealso: - - module: etcd3 + - module: community.general.etcd3 - ref: etcd_lookup requirements: diff --git a/plugins/modules/database/misc/redis.py b/plugins/modules/database/misc/redis.py index 7c766cfbfa..dbf60c71b8 100644 --- a/plugins/modules/database/misc/redis.py +++ b/plugins/modules/database/misc/redis.py @@ -70,7 +70,7 @@ notes: this needs to be in the redis.conf in the masterauth variable seealso: - - module: redis_info + - module: community.general.redis_info requirements: [ redis ] author: "Xabier Larrakoetxea (@slok)" ''' diff --git a/plugins/modules/database/misc/redis_info.py b/plugins/modules/database/misc/redis_info.py index 5961dafe1b..f37330cb65 100644 --- a/plugins/modules/database/misc/redis_info.py +++ b/plugins/modules/database/misc/redis_info.py @@ -35,7 +35,7 @@ notes: install it with pip (C(pip install redis)) or with a package manager. U(https://github.com/andymccurdy/redis-py) seealso: -- module: redis +- module: community.general.redis requirements: [ redis ] author: "Pavlo Bashynskyi (@levonet)" ''' diff --git a/plugins/modules/net_tools/hetzner_failover_ip.py b/plugins/modules/net_tools/hetzner_failover_ip.py index 1b3a5550c6..7e866cb34d 100644 --- a/plugins/modules/net_tools/hetzner_failover_ip.py +++ b/plugins/modules/net_tools/hetzner_failover_ip.py @@ -20,7 +20,7 @@ seealso: - name: Failover IP documentation description: Hetzner's documentation on failover IPs. link: https://wiki.hetzner.de/index.php/Failover/en - - module: hetzner_failover_ip_info + - module: community.general.hetzner_failover_ip_info description: Retrieve information on failover IPs. extends_documentation_fragment: - community.general.hetzner diff --git a/plugins/modules/net_tools/hetzner_failover_ip_info.py b/plugins/modules/net_tools/hetzner_failover_ip_info.py index e7c8a6fff2..c3904d1169 100644 --- a/plugins/modules/net_tools/hetzner_failover_ip_info.py +++ b/plugins/modules/net_tools/hetzner_failover_ip_info.py @@ -20,7 +20,7 @@ seealso: - name: Failover IP documentation description: Hetzner's documentation on failover IPs. link: https://wiki.hetzner.de/index.php/Failover/en - - module: hetzner_failover_ip + - module: community.general.hetzner_failover_ip description: Manage failover IPs. extends_documentation_fragment: - community.general.hetzner diff --git a/plugins/modules/net_tools/hetzner_firewall.py b/plugins/modules/net_tools/hetzner_firewall.py index a6d731a26f..ffc8b751aa 100644 --- a/plugins/modules/net_tools/hetzner_firewall.py +++ b/plugins/modules/net_tools/hetzner_firewall.py @@ -23,7 +23,7 @@ seealso: - name: Firewall documentation description: Hetzner's documentation on the stateless firewall for dedicated servers link: https://wiki.hetzner.de/index.php/Robot_Firewall/en - - module: hetzner_firewall_info + - module: community.general.hetzner_firewall_info description: Retrieve information on firewall configuration. extends_documentation_fragment: - community.general.hetzner diff --git a/plugins/modules/net_tools/hetzner_firewall_info.py b/plugins/modules/net_tools/hetzner_firewall_info.py index 5c13228fc0..2aec5d7ede 100644 --- a/plugins/modules/net_tools/hetzner_firewall_info.py +++ b/plugins/modules/net_tools/hetzner_firewall_info.py @@ -21,7 +21,7 @@ seealso: - name: Firewall documentation description: Hetzner's documentation on the stateless firewall for dedicated servers link: https://wiki.hetzner.de/index.php/Robot_Firewall/en - - module: hetzner_firewall + - module: community.general.hetzner_firewall description: Configure firewall. extends_documentation_fragment: - community.general.hetzner diff --git a/plugins/modules/system/lvg.py b/plugins/modules/system/lvg.py index 0a0b9c4eb0..6551920d77 100644 --- a/plugins/modules/system/lvg.py +++ b/plugins/modules/system/lvg.py @@ -62,9 +62,9 @@ options: type: bool default: no seealso: -- module: filesystem -- module: lvol -- module: parted +- module: community.general.filesystem +- module: community.general.lvol +- module: community.general.parted notes: - This module does not modify PE size for already present volume group. '''