OLD | NEW |
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 description "Start the failsafe timer" | 5 description "Start the failsafe timer" |
6 author "chromium-os-dev@chromium.org" | 6 author "chromium-os-dev@chromium.org" |
7 | 7 |
8 # This job is used as the guarantee that the "failsafe" job will start. | 8 # This job is used as the guarantee that the "failsafe" job will start. |
9 # It's a separate job to allow failsafe to start on normal conditions | 9 # It's a separate job to allow failsafe to start on normal conditions |
10 # before the timer here expires. | 10 # before the timer here expires. |
| 11 # |
| 12 # NOTE: We purposely don't start the delay until boot-services |
| 13 # have finished starting up so that people waiting on failsafe |
| 14 # can always assume that boot-services are there. |
11 | 15 |
12 start on runlevel 2 | 16 start on started boot-services |
13 | 17 |
14 exec sleep 30 | 18 exec sleep 30 |
OLD | NEW |