blob: 40fdfd5fc1fd1f6773fd0cdce8423760612d1bec [file] [log] [blame]
#!/usr/bin/env python
#
# Copyright 2017 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Reboot a Swarming bot."""
import os
import sys
if sys.platform == 'win32':
os.system('shutdown /r /t 0')
else:
os.system('sudo reboot')