Chromium Code Reviews| 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 "Print Chrome OS factory log to tty3" | |
| 6 author "chromium-os-dev@chromium.org" | |
| 7 | |
| 8 start on started factory | |
| 9 stop on starting halt or starting reboot | |
| 10 | |
| 11 respawn | |
| 12 script | |
| 13 tail -n 48 -F /var/log/factory.log >/dev/tty3 | |
| 14 end script | |
| OLD | NEW |