OLD | NEW |
(Empty) | |
| 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 description "Job to trigger boot services" |
| 6 author "chromium-os-dev@chromium.org" |
| 7 |
| 8 # This job is used as a milestone marker for jobs that are run at |
| 9 # system boot right after chromeos_startup. |
| 10 # |
| 11 # Specifically, tasks that should start right after chromeos_startup should |
| 12 # use syntax like: |
| 13 # start on starting boot-services |
| 14 # stop on stopping boot-services |
| 15 # |
| 16 # Tasks that want to wait for all boot services to be ready should use |
| 17 # syntax like: |
| 18 # start on started boot-services |
| 19 |
| 20 # In startup.conf we see "telinit 2", which kicks us off. |
| 21 start on runlevel 2 |
| 22 stop on starting halt or starting reboot |
| 23 |
| 24 # We purposely omit the main process. upstart marks us running |
| 25 # on the first event, and ignores all subsequent events until we |
| 26 # stop. |
OLD | NEW |