[moblab] Utility script to generate moblab unique id.

BUG=b:723865
TEST=tested on local moblab

Change-Id: I61da868a873a3f022d6584d44a2842a89aa59222
Reviewed-on: https://chromium-review.googlesource.com/906914
Commit-Ready: Keith Haddow <haddowk@chromium.org>
Tested-by: Keith Haddow <haddowk@chromium.org>
Reviewed-by: Keith Haddow <haddowk@chromium.org>
Reviewed-by: Matt Mallett <mattmallett@chromium.org>
diff --git a/src/tools/create-moblab-id.py b/src/tools/create-moblab-id.py
new file mode 100644
index 0000000..380bc9b
--- /dev/null
+++ b/src/tools/create-moblab-id.py
@@ -0,0 +1,15 @@
+#!/usr/bin/python
+#
+# Copyright 2018 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+
+"""Tool for generating a moblab id"""
+#TODO(haddokw)  refactor the code and break the dependency on autotest.
+import common
+
+from autotest_lib.client.common_lib import utils
+
+if __name__ == '__main__':
+    utils.get_moblab_id()