blob: 48c8a073357c0de5c89cdc0adcf733c6a25a08e1 [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
5"""Provides utility methods for interacting with upstart"""
6
7from autotest_lib.client.common_lib import utils
8
9def ensure_running(service_name):
10 cmd = 'initctl status %s | grep start/running' % service_name
11 utils.system(cmd)