summaryrefslogtreecommitdiff
path: root/morphlib
diff options
context:
space:
mode:
authorPaul Sherwood <paul.sherwood@codethink.co.uk>2014-04-20 15:40:50 +0000
committerPaul Sherwood <paul.sherwood@codethink.co.uk>2014-04-20 15:40:50 +0000
commit3a4276f0dca8c5b6a978c83e4d468fccb75b4ed5 (patch)
treead245c483ebc03e15a779cdd07c67b330e66127b /morphlib
parent29bf8404beb1bac3443393753660d77c587ed77c (diff)
downloadmorph-3a4276f0dca8c5b6a978c83e4d468fccb75b4ed5.tar.gz
fix the Virtualbox version checking
Diffstat (limited to 'morphlib')
-rwxr-xr-xmorphlib/exts/virtualbox-ssh.write4
1 files changed, 2 insertions, 2 deletions
diff --git a/morphlib/exts/virtualbox-ssh.write b/morphlib/exts/virtualbox-ssh.write
index 2a2f3f7b..b9d53579 100755
--- a/morphlib/exts/virtualbox-ssh.write
+++ b/morphlib/exts/virtualbox-ssh.write
@@ -116,7 +116,7 @@ class VirtualBoxPlusSshWriteExtension(morphlib.writeexts.WriteExtension):
# comparing against the major, minor and patch numbers directly
self.status(msg='Checking version of remote VirtualBox')
build_id = cliapp.ssh_runcmd(ssh_host, ['VBoxManage', '--version'])
- version_string = re.match(r"^([0-9\.])+.*$", build_id.strip()).group(1)
+ version_string = re.match(r"^([0-9\.]+).*$", build_id.strip()).group(1)
return tuple(int(s or '0') for s in version_string.split('.'))
def create_virtualbox_guest(self, ssh_host, vm_name, vdi_path, autostart):
@@ -130,7 +130,7 @@ class VirtualBoxPlusSshWriteExtension(morphlib.writeexts.WriteExtension):
hostonly_iface = self.get_host_interface(ssh_host)
- if self.virtualbox_version(ssh_host) < (4, 3):
+ if self.virtualbox_version(ssh_host) < (4, 3, 0):
sataportcount_option = '--sataportcount'
else:
sataportcount_option = '--portcount'