From 12e81e68fc15f7efa191af2c96fa6c3e379a59aa Mon Sep 17 00:00:00 2001 From: Ganesh Nalawade Date: Tue, 8 Aug 2017 14:50:54 +0530 Subject: [PATCH] remoe duplicate net_lldp_interface (#27880) --- .../network/layer2/net_lldp_interface.py | 68 ------------------- 1 file changed, 68 deletions(-) delete mode 100644 lib/ansible/modules/network/layer2/net_lldp_interface.py diff --git a/lib/ansible/modules/network/layer2/net_lldp_interface.py b/lib/ansible/modules/network/layer2/net_lldp_interface.py deleted file mode 100644 index 7124a538b9..0000000000 --- a/lib/ansible/modules/network/layer2/net_lldp_interface.py +++ /dev/null @@ -1,68 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- - -# (c) 2017, Ansible by Red Hat, inc -# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) - -from __future__ import absolute_import, division, print_function -__metaclass__ = type - - -ANSIBLE_METADATA = {'metadata_version': '1.0', - 'status': ['preview'], - 'supported_by': 'core'} - - -DOCUMENTATION = """ ---- -module: net_lldp_interface -version_added: "2.4" -author: "Ricardo Carrillo Cruz (@rcarrillocruz)" -short_description: Manage LLDP interfaces configuration on network devices -description: - - This module provides declarative management of LLDP interfaces configuration - on network devices. -options: - name: - description: Name of the interface LLDP should be configured on. - aggregate: - description: List of interfaces LLDP should be configured on. - purge: - description: - - Purge interfaces not defined in the interfaces parameter. - default: no - state: - description: - - State of the LLDP configuration. - default: present - choices: ['present', 'absent'] -""" - -EXAMPLES = """ -- name: Enable LLDP on specific interface - net_lldp_interface: - name: eth1 - state: present - -- name: Disable LLDP on specific interface - net_lldp_interface: - name: eth1 - state: absent - -- name: Enable LLDP on list of interfaces - net_lldp_interface: - aggregate: - - { name: eth1 } - - { name: eth2, state: absent } - state: present -""" - -RETURN = """ -commands: - description: The list of configuration mode commands to send to the device - returned: always, except for the platforms that use Netconf transport to manage the device. - type: list - sample: - - set service lldp eth1 - - set service lldp eth2 -"""