summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2013-02-07 11:51:06 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2013-02-07 13:04:27 +0000
commit769c0ae2808a3c3e383c470795510b72c45c5a76 (patch)
tree111473192eda600939d18dd65de77024efd8c8cc
parent253b541bfbfb18f731f90348bae480f304297d36 (diff)
downloaddefinitions-769c0ae2808a3c3e383c470795510b72c45c5a76.tar.gz
Remove debugging output
Suggested-By: Richard Maw
-rwxr-xr-xkvm.write13
-rwxr-xr-xrawdisk.write6
-rwxr-xr-xvirtualbox-ssh.write10
3 files changed, 0 insertions, 29 deletions
diff --git a/kvm.write b/kvm.write
index ed85b17e..e52e5553 100755
--- a/kvm.write
+++ b/kvm.write
@@ -54,19 +54,6 @@ class KvmPlusSshWriteExtension(morphlib.writeexts.WriteExtension):
temp_root, location = args
ssh_host, vm_name, vm_path = self.parse_location(location)
- self.status(
- msg='Temporary system root: %(temp_root)s',
- temp_root=temp_root)
- self.status(
- msg='libvirt server: %(ssh_host)s',
- ssh_host=ssh_host)
- self.status(
- msg='libvirt guest: %(vm_name)s',
- vm_name=vm_name)
- self.status(
- msg='libvirt disk image: %(vm_path)s',
- vm_path=vm_path)
-
size = self.get_disk_size()
self.status(msg='Disk size is %(size)d bytes', size=size)
diff --git a/rawdisk.write b/rawdisk.write
index c6f9c7f6..89e9e82b 100755
--- a/rawdisk.write
+++ b/rawdisk.write
@@ -39,12 +39,6 @@ class RawDiskWriteExtension(morphlib.writeexts.WriteExtension):
raise cliapp.AppException('Wrong number of command line args')
temp_root, location = args
- self.status(
- msg='Temporary system root: %(temp_root)s',
- temp_root=temp_root)
- self.status(
- msg='Disk image to create: %(location)s',
- location=location)
size = self.get_disk_size()
self.status(msg='Disk size is %(size)d bytes', size=size)
diff --git a/virtualbox-ssh.write b/virtualbox-ssh.write
index e2f592e7..dbfb90a7 100755
--- a/virtualbox-ssh.write
+++ b/virtualbox-ssh.write
@@ -61,16 +61,6 @@ class VirtualBoxPlusSshWriteExtension(morphlib.writeexts.WriteExtension):
temp_root, location = args
ssh_host, vm_name, vdi_path = self.parse_location(location)
- self.status(
- msg='Temporary system root: %(temp_root)s',
- temp_root=temp_root)
- self.status(
- msg='VirtualBox server: %(ssh_host)s',
- ssh_host=ssh_host)
- self.status(
- msg='VirtualBox guest: %(vm_name)s',
- vm_name=vm_name)
-
size = self.get_disk_size()
self.status(msg='Disk size is %(size)d bytes', size=size)