2011-07-15 19:08:59 +00:00
|
|
|
import base64
|
2011-05-18 21:46:49 +00:00
|
|
|
import paramiko
|
|
|
|
|
|
|
|
def split_user(user_at_host):
|
|
|
|
try:
|
|
|
|
user, host = user_at_host.rsplit('@', 1)
|
|
|
|
except ValueError:
|
|
|
|
user, host = None, user_at_host
|
|
|
|
assert user != '', \
|
|
|
|
"Bad input to split_user: {user_at_host!r}".format(user_at_host=user_at_host)
|
|
|
|
return user, host
|
|
|
|
|
2011-07-15 19:08:59 +00:00
|
|
|
def create_key(keytype, key):
|
|
|
|
if keytype == 'ssh-rsa':
|
|
|
|
return paramiko.rsakey.RSAKey(data=base64.decodestring(key))
|
|
|
|
elif keytype == 'ssh-dss':
|
|
|
|
return paramiko.dsskey.DSSKey(data=base64.decodestring(key))
|
|
|
|
else:
|
|
|
|
raise ValueError('keytype must be ssh-rsa or ssh-dsa')
|
2011-05-18 21:46:49 +00:00
|
|
|
|
2011-11-03 20:07:21 +00:00
|
|
|
def connect(user_at_host, host_key=None, keep_alive=False,
|
|
|
|
_SSHClient=None, _create_key=None):
|
2011-05-18 21:46:49 +00:00
|
|
|
user, host = split_user(user_at_host)
|
|
|
|
if _SSHClient is None:
|
|
|
|
_SSHClient = paramiko.SSHClient
|
|
|
|
ssh = _SSHClient()
|
2011-07-15 19:08:59 +00:00
|
|
|
if _create_key is None:
|
|
|
|
_create_key = create_key
|
|
|
|
|
|
|
|
if host_key is None:
|
|
|
|
ssh.load_system_host_keys()
|
|
|
|
else:
|
|
|
|
keytype, key = host_key.split(' ', 1)
|
|
|
|
ssh.get_host_keys().add(
|
|
|
|
hostname=host,
|
|
|
|
keytype=keytype,
|
|
|
|
key=_create_key(keytype, key)
|
|
|
|
)
|
Pull from new gitbuilder.ceph.com locations.
Simplifies the flavor stuff into a tuple of
<package,type,flavor,dist,arch>
where package is ceph, kenrel, etc.
type is tarball, deb
flavor is basic, gcov, notcmalloc
arch is x86_64, i686 (uname -m)
dist is oneiric, etc. (lsb_release -s -c)
2012-03-13 17:02:26 +00:00
|
|
|
|
2012-06-06 01:41:45 +00:00
|
|
|
# just let the exceptions bubble up to caller
|
|
|
|
ssh.connect(
|
|
|
|
hostname=host,
|
|
|
|
username=user,
|
|
|
|
timeout=60,
|
|
|
|
)
|
2011-11-03 20:07:21 +00:00
|
|
|
ssh.get_transport().set_keepalive(keep_alive)
|
2011-05-18 21:46:49 +00:00
|
|
|
return ssh
|