OLD | NEW |
1 #!/bin/bash | 1 #!/bin/sh |
2 | 2 |
3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. | 3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 # common logging function for all memento updater scripts | 7 # common logging function for all memento updater scripts |
8 | 8 |
9 export MEMENTO_AU_LOG=/var/log/softwareupdate.log | 9 export MEMENTO_AU_LOG=/var/log/softwareupdate.log |
10 | 10 |
11 function log { | 11 log() { |
12 echo $(/bin/date) "$*" >> "$MEMENTO_AU_LOG" | 12 echo $(/bin/date) "$*" >> "$MEMENTO_AU_LOG" |
13 } | 13 } |
14 export log | 14 export log |
OLD | NEW |