summaryrefslogtreecommitdiff
path: root/kvm.write
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2014-04-11 12:29:32 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2014-04-14 14:11:58 +0000
commitb6cf558479974fbb025fe179ab7cea888c20428b (patch)
treec68abac8ca88a9ce6a21c6ad8649e78600e6e98b /kvm.write
parentcd1ac31a95fb3fdedd307975d0cb07b93abefeb6 (diff)
downloaddefinitions-b6cf558479974fbb025fe179ab7cea888c20428b.tar.gz
deploy: Check SSH connection for KVM deployment before starting
Slight duplication is necessary, but it's only a few lines. We could move the duplicated code into the base class in 'morphlib.writeexts' if there was more duplication.
Diffstat (limited to 'kvm.write')
-rwxr-xr-xkvm.write9
1 files changed, 3 insertions, 6 deletions
diff --git a/kvm.write b/kvm.write
index 94560972..94a55daa 100755
--- a/kvm.write
+++ b/kvm.write
@@ -50,6 +50,8 @@ class KvmPlusSshWriteExtension(morphlib.writeexts.WriteExtension):
'''
+ location_pattern = '^/(?P<guest>[^/]+)(?P<path>/.+)$'
+
def process_args(self, args):
if len(args) != 2:
raise cliapp.AppException('Wrong number of command line args')
@@ -79,14 +81,9 @@ class KvmPlusSshWriteExtension(morphlib.writeexts.WriteExtension):
def parse_location(self, location):
'''Parse the location argument to get relevant data.'''
-
+
x = urlparse.urlparse(location)
- if x.scheme != 'kvm+ssh':
- raise cliapp.AppException(
- 'URL schema must be vbox+ssh in %s' % location)
m = re.match('^/(?P<guest>[^/]+)(?P<path>/.+)$', x.path)
- if not m:
- raise cliapp.AppException('Cannot parse location %s' % location)
return x.netloc, m.group('guest'), m.group('path')
def transfer(self, raw_disk, ssh_host, vm_path):