blob: ce7354da6d370a7e44b70d5a34e65040bd00922d [file] [log] [blame]
Jason Glasgow5395ed22011-08-19 13:16:47 -04001# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
Paul Stewartf748e3b2011-09-12 15:04:11 -07005# NB: this code is downloaded for use by site_system_suspend.py;
6# beware of adding dependencies on client libraries such as utils
7
Jason Glasgow5395ed22011-08-19 13:16:47 -04008"""Provides utility methods for interacting with upstart"""
9
Paul Stewartf748e3b2011-09-12 15:04:11 -070010import os
Jason Glasgow5395ed22011-08-19 13:16:47 -040011
12def ensure_running(service_name):
13 cmd = 'initctl status %s | grep start/running' % service_name
Paul Stewartf748e3b2011-09-12 15:04:11 -070014 os.system(cmd)