~registry/weblive/ltsp-cluster-agent-weblive

« back to all changes in this revision

Viewing changes to plugins/vmmanager/__init__.py

  • Committer: Stéphane Graber
  • Date: 2011-02-28 16:24:46 UTC
  • Revision ID: stgraber@ubuntu.com-20110228162446-bz7slxvja1fcie9t
Set a 5 seconds timeout on SSH

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
            username="root",
79
79
            password=self.get_config_path(self.config,"servers",serverid,"password"),
80
80
            allow_agent=False,
81
 
            look_for_keys=False
 
81
            look_for_keys=False,
 
82
            timeout=5
82
83
        )
83
84
        return ssh
84
85