summaryrefslogtreecommitdiff
path: root/plugins/modules/vyos_banner.py
diff options
context:
space:
mode:
authorKate Case <kcase@redhat.com>2022-10-13 13:11:19 -0400
committerGitHub <noreply@github.com>2022-10-13 13:11:19 -0400
commit5c6a97ae5052684aed513427f81dc1da96c094e3 (patch)
tree62cf80483b7f46551fec0bbcc7f5c5b50db1b2a5 /plugins/modules/vyos_banner.py
parent7712afd90de9a2b4f6d91f3fbea77de20d6ed40e (diff)
downloadvyos.vyos-5c6a97ae5052684aed513427f81dc1da96c094e3.tar.gz
vyos.vyos-5c6a97ae5052684aed513427f81dc1da96c094e3.zip
Remove deprecated modules and provider (#277)
* Remove deprecated modules and provider * Remove tests for removed modules * Remove references to vyos_argument_spec
Diffstat (limited to 'plugins/modules/vyos_banner.py')
-rw-r--r--plugins/modules/vyos_banner.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/plugins/modules/vyos_banner.py b/plugins/modules/vyos_banner.py
index 07b5a281..a5f3fb94 100644
--- a/plugins/modules/vyos_banner.py
+++ b/plugins/modules/vyos_banner.py
@@ -95,9 +95,6 @@ from ansible_collections.vyos.vyos.plugins.module_utils.network.vyos.vyos import
get_config,
load_config,
)
-from ansible_collections.vyos.vyos.plugins.module_utils.network.vyos.vyos import (
- vyos_argument_spec,
-)
def spec_to_commands(updates, module):
@@ -164,8 +161,6 @@ def main():
state=dict(default="present", choices=["present", "absent"]),
)
- argument_spec.update(vyos_argument_spec)
-
required_if = [("state", "present", ("text",))]
module = AnsibleModule(