Home | History | Annotate | Download | only in server

Lines Matching full:host

34         """Get repo to use for packages from host attribute, if possible.
37 from which to source packages when running a test on that host.
38 If self.host is set, attempt to look this attribute up by calling out
41 @returns value of the 'job_repo_url' host attribute, if present.
45 if self.host:
47 hosts = afe.get_hosts(hostname=self.host.hostname)
50 logging.warning("No %s for %s", JOB_REPO_URL, self.host)
63 from which to source packages when running a test on that host.
77 # set this as the repo_url for the host. If an AFE is not being
81 # the host will no longer have the context of the image option
88 # Only try to get fetch location from host attribute if the test
91 # the host attribute. If we are not running with a full AFE
94 # artifacts for the build on the host.
105 def install(self, host=None, autodir=None, use_packaging=True):
106 """Install autotest. If |host| is not None, stores it in |self.host|.
108 @param host A Host instance on which autotest will be installed
109 @param autodir Location on the remote host to install to
113 if host:
114 self.host = host
116 super(SiteAutotest, self).install(host=host, autodir=autodir,
120 def _install(self, host=None, autodir=None, use_autoserv=True,
127 @param host A Host instance on which autotest will be installed
128 @param autodir Location on the remote host to install to
134 the target host does not have svn installed in its path
137 super(SiteAutotest, self)._install(host, autodir, use_autoserv,
145 destination = os.path.join(self.host.get_autodir(),
152 self.host.send_file(client_config.name, destination)
155 def run_static_method(self, module, method, results_dir='.', host=None,
170 @param host: A Host instance on which the control file should
177 self.run(control, results_dir=results_dir, host=host)
197 self.host.send_file(checksum_file, dest_path)
206 self.host.run("echo B > %s" % fifo_path)
223 self.host.send_file(server_package, remote_dest)