df063bd78d
* Congregate plugin scripts for Arista platforms * Update arista driver submodules Pulls new platform API related changes
13 lines
242 B
Python
13 lines
242 B
Python
#!/usr/bin/env python
|
|
|
|
#
|
|
# Arista LED controls for SONiC
|
|
#
|
|
|
|
try:
|
|
import arista.utils.sonic_leds as arista_leds
|
|
except ImportError as e:
|
|
raise ImportError("%s - required module not found" % e)
|
|
|
|
LedControl = arista_leds.getLedControl()
|