Chromium Code Reviews| Index: gce/start_checker.sh |
| diff --git a/gce/start_checker.sh b/gce/start_checker.sh |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..7d5b914c80a13bec310b3fd1071b9f6808ccf26c |
| --- /dev/null |
| +++ b/gce/start_checker.sh |
| @@ -0,0 +1,9 @@ |
| +#!/bin/bash |
| +# Copyright (c) 2016 The Chromium Authors. All rights reserved. |
|
dgozman
2016/09/22 16:42:54
No (c) in copyrights
chenwilliam
2016/09/22 20:25:53
Done.
|
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +echo "Killing previous instance of checker.py (if applicable)" |
| +pkill -f checker.py |
| +nohup ./checker.py >/dev/null 2>&1 & |
| +echo "Started checker process in background" |