blob: 2e707113bfafef61e4203ae42a552cf811ce77bd [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.
"""Poweroff a Swarming bot."""
import os
import sys
if sys.platform == 'win32':
os.system('shutdown -s')
else:
os.system('sudo shutdown now')