6037707abc
* Add boot0 definition for Arista 7060PX4-32 and 7060DX4-32 * Add port configuration for Arista 7060PX4-32 * Add plugins for Arista 7060PX4-32 * Add platform_reboot for Arista 7060PX4-32 * Add Arista 7060DX4-32 as symlink of 7060PX4-32 * Add sensors configuration and fancontrol for Arista 7060PX4-32 * Update arista-driver submodules for barefoot/broadcom * Add platform_reboot script for Alhambra * Rook fancontrol CPLD rename
12 lines
178 B
Python
Executable File
12 lines
178 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import arista.platforms
|
|
from arista.utils.sonic_reboot import reboot
|
|
|
|
def main():
|
|
# reboot the system
|
|
reboot()
|
|
|
|
if __name__ == "__main__":
|
|
main()
|