OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2010 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 "System software update service" | |
6 # author "chromium-os-dev@googlegroups.com" | |
7 # | |
8 # when boot reaches login prompt, start up software update check. | |
9 | |
10 start on stopped boot-complete | |
11 | |
12 respawn | |
13 | |
14 exec /opt/google/memento_updater/software_update.sh 1800 # seconds = 30 min | |
OLD | NEW |