| Index: server/hosts/site_host.py
|
| diff --git a/server/hosts/site_host.py b/server/hosts/site_host.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..cb5e30135a3d84cfb23ceab4617008d4b68a0eb7
|
| --- /dev/null
|
| +++ b/server/hosts/site_host.py
|
| @@ -0,0 +1,12 @@
|
| +from autotest_lib.server import autoserv_parser
|
| +
|
| +
|
| +parser = autoserv_parser.autoserv_parser
|
| +
|
| +
|
| +class SiteHost():
|
| + def machine_install(self):
|
| + image = parser.options.image
|
| + print "Install %s to host: %s" % (image, self.hostname)
|
| + # TODO(seano): implement the real os reimage method here.
|
| +
|
|
|