diff --git a/README.md b/README.md index a59f814af..ac4ca85a1 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Daemons for controlling platform-specific functionality in SONiC # Contribution guide -All contributors must sign a contribution license agreement before contributions can be accepted. Contact kasubra@microsoft.com or daloher@microsoft.com. Later this will be automated. +All contributors must sign a contribution license agreement (CLA) before contributions can be accepted. This process is now automated via a GitHub bot when submitting new pull request. If the contributor has not yet signed a CLA, the bot will create a comment on the pull request containing a link to electronically sign the CLA. ### GitHub Workflow @@ -34,7 +34,7 @@ For example: > * Health-Monitor - The idea of the patch is that if something went wrong with the notification channel, > we will have the option to know about it (Query the LLEN table length). > -> Signed-off-by: user@dev.null +> Signed-off-by: John Doe user@dev.null * Each developer should fork this repository and [add the team as a Contributor](https://help.github.com/articles/adding-collaborators-to-a-personal-repository) diff --git a/sonic-ledd/setup.py b/sonic-ledd/setup.py index ea435c37f..d995d3d28 100644 --- a/sonic-ledd/setup.py +++ b/sonic-ledd/setup.py @@ -2,7 +2,7 @@ setup( name='sonic-ledd', - version='1.0', + version='1.1', description='Front-panel LED control daemon for SONiC', license='Apache 2.0', author='SONiC Team', @@ -10,7 +10,6 @@ url='https://github.com/Azure/sonic-platform-daemons', maintainer='Joe LeVeque', maintainer_email='jolevequ@microsoft.com', - packages=['sonic_led'], scripts=[ 'scripts/ledd', ], diff --git a/sonic-ledd/sonic_led/__init__.py b/sonic-ledd/sonic_led/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/sonic-ledd/sonic_led/led_control_base.py b/sonic-ledd/sonic_led/led_control_base.py deleted file mode 100644 index c4309c4b4..000000000 --- a/sonic-ledd/sonic_led/led_control_base.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env python -# -# led_control_base.py -# -# Abstract base class for implementing platform-specific -# LED control functionality for SONiC -# - -try: - import abc -except ImportError, e: - raise ImportError (str(e) + " - required module not found") - -class LedControlBase(object): - __metaclass__ = abc.ABCMeta - - @abc.abstractmethod - def port_link_state_change(self, port, state): - """ - Called when port link state changes. Update port link state LED here. - - :param port: A string, SONiC port name (e.g., "Ethernet0") - :param state: A string, the port link state (either "up" or "down") - """ - return