| Index: gce/start_checker.sh
|
| diff --git a/gce/start_checker.sh b/gce/start_checker.sh
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..4643ed672ac263f05803be24840a5ff187073dd2
|
| --- /dev/null
|
| +++ b/gce/start_checker.sh
|
| @@ -0,0 +1,9 @@
|
| +#!/bin/bash
|
| +# Copyright 2016 The Chromium Authors. All rights reserved.
|
| +# 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"
|
|
|