collection 교체

This commit is contained in:
정훈 변
2024-02-23 16:37:40 +09:00
parent b494779b5b
commit 3fd554eee9
38862 changed files with 220204 additions and 6600073 deletions

View File

@@ -8,14 +8,14 @@ Test plugin file for netaddr tests: supernet_of
"""
from __future__ import absolute_import, division, print_function
from ansible_collections.ansible.utils.plugins.plugin_utils.base.ipaddress_utils import (
ip_network,
_need_ipaddress,
_is_subnet_of,
_need_ipaddress,
ip_network,
)
from ansible_collections.ansible.utils.plugins.plugin_utils.base.utils import (
_validate_args,
)
from ansible_collections.ansible.utils.plugins.plugin_utils.base.utils import _validate_args
__metaclass__ = type
@@ -30,15 +30,13 @@ DOCUMENTATION = """
network_a:
description:
- A string that represents the first network address
- For example:
- "10.1.1.0/24"
- 'For example: C(10.1.1.0/24)'
type: str
required: True
network_b:
description:
- A string that represents the second network address
- For example:
- "10.0.0.0/8"
- 'For example: C(10.0.0.0/8)'
type: str
required: True
notes:
@@ -69,7 +67,6 @@ EXAMPLES = r"""
# },
# "changed": false
# }
"""
RETURN = """