Home | History | Annotate | Download | only in server

Lines Matching refs:hosts

46 from autotest_lib.server.hosts import abstract_ssh
47 from autotest_lib.server.hosts import afe_store
48 from autotest_lib.server.hosts import file_store
49 from autotest_lib.server.hosts import shadowing_store
50 from autotest_lib.server.hosts import factory as host_factory
51 from autotest_lib.server.hosts import host_info
52 from autotest_lib.server.hosts import ssh_multiplex
311 self.hosts = set()
431 to properly clean up self.hosts created in forked subprocesses.
434 self._existing_hosts_on_fork = set(self.hosts)
436 new_hosts = self.hosts - self._existing_hosts_on_fork
584 Provision all hosts to match |labels|.
1342 ('hosts', 'autotest', 'standalone_profiler'))
1355 # server.hosts.base_classes.Host uses .job.
1356 namespace['hosts'].Host.job = self
1357 namespace['hosts'].TestBed.job = self
1358 namespace['hosts'].factory.ssh_user = self._ssh_user
1359 namespace['hosts'].factory.ssh_port = self._ssh_port
1360 namespace['hosts'].factory.ssh_pass = self._ssh_pass
1361 namespace['hosts'].factory.ssh_verbosity_flag = (
1363 namespace['hosts'].factory.ssh_options = self._ssh_options
1485 """Clears known hosts files for all AbstractSSHHosts."""
1486 for host in self.hosts:
1495 for host in list(self.hosts):
1497 assert not self.hosts
1576 hosts = afe.get_hosts(hostname=hostname)
1577 if not hosts:
1578 raise error.AutoservError('No hosts named %s found' % hostname)
1580 return hosts[0]