From 39e889531455ee5ef16dcb9aff4c3211b78a1c78 Mon Sep 17 00:00:00 2001 From: Zhi Yuan Carl Zhao Date: Thu, 17 Jan 2019 14:06:17 -0800 Subject: [PATCH] Add platform_reboot for Arista 7060PX4-32 --- .../arista/x86_64-arista_7060px4_32/platform_reboot | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 device/arista/x86_64-arista_7060px4_32/platform_reboot diff --git a/device/arista/x86_64-arista_7060px4_32/platform_reboot b/device/arista/x86_64-arista_7060px4_32/platform_reboot new file mode 100755 index 000000000000..9010dcb28063 --- /dev/null +++ b/device/arista/x86_64-arista_7060px4_32/platform_reboot @@ -0,0 +1,11 @@ +#!/usr/bin/env python + +from arista import platforms +from arista.utils.sonic_reboot import reboot + +def main(): + # reboot the system + reboot() + +if __name__ == "__main__": + main()