Jason Glasgow | 5395ed2 | 2011-08-19 13:16:47 -0400 | [diff] [blame] | 1 | # 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 | |||||
7 | from autotest_lib.client.common_lib import utils | ||||
8 | |||||
9 | def ensure_running(service_name): | ||||
10 | cmd = 'initctl status %s | grep start/running' % service_name | ||||
11 | utils.system(cmd) |