12 lines
178 B
Plaintext
12 lines
178 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
import arista.platforms
|
||
|
from arista.utils.sonic_reboot import reboot
|
||
|
|
||
|
def main():
|
||
|
# reboot the system
|
||
|
reboot()
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|