Added all the other quotas for great win.
authorPeter Iannucci <iannucci@mit.edu>
Tue, 17 Feb 2009 06:54:26 +0000 (01:54 -0500)
committerPeter Iannucci <iannucci@mit.edu>
Tue, 17 Feb 2009 06:54:26 +0000 (01:54 -0500)
svn path=/trunk/packages/invirt-remote/; revision=2134

debian/changelog
server/usr/sbin/invirt-remote-create

index 1c55796..069d9a8 100644 (file)
@@ -4,9 +4,8 @@ invirt-remote (0.3.4) unstable; urgency=low
     /etc/invirt/nocreate; if it exists, they advertise zero free memory and
     refuse to create VMs
   * added memory quota validation to invirt-remote-create
     /etc/invirt/nocreate; if it exists, they advertise zero free memory and
     refuse to create VMs
   * added memory quota validation to invirt-remote-create
-  * added owner table to database with ram_quota_total and ram_quota_single
 
 
- -- Peter A. Iannucci <iannucci@mit.edu>  Mon, 16 Feb 2009 23:49:14 -0500
+ -- Peter A. Iannucci <iannucci@mit.edu>  Tue, 17 Feb 2009 01:31:20 -0500
 
 invirt-remote (0.3.3) unstable; urgency=low
 
 
 invirt-remote (0.3.3) unstable; urgency=low
 
index bae10c0..3ec70a5 100755 (executable)
@@ -19,7 +19,7 @@ def maxMemory(owner, xmlist):
     Return the memory available for a new machine.
     """
     machines = invirt.database.Machine.query().filter_by(owner=owner)
     Return the memory available for a new machine.
     """
     machines = invirt.database.Machine.query().filter_by(owner=owner)
-    (quota_total, quota_single) = invirt.database.Owner.getQuotas(owner)
+    (quota_total, quota_single) = invirt.database.Owner.getMemoryQuotas(owner)
 
     active_machines = [m for m in machines if m.name in xmlist]
     mem_usage = sum([x.memory for x in active_machines])
 
     active_machines = [m for m in machines if m.name in xmlist]
     mem_usage = sum([x.memory for x in active_machines])