blob: 48c8a073357c0de5c89cdc0adcf733c6a25a08e1 [file] [log] [blame]
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Provides utility methods for interacting with upstart"""
from autotest_lib.client.common_lib import utils
def ensure_running(service_name):
cmd = 'initctl status %s | grep start/running' % service_name
utils.system(cmd)