projects
/
invirt/packages/invirt-remote.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Allow "preseed" as a valid installation option.
[invirt/packages/invirt-remote.git]
/
server
/
usr
/
sbin
/
invirt-remote-create
diff --git
a/server/usr/sbin/invirt-remote-create
b/server/usr/sbin/invirt-remote-create
index
bae10c0
..
9f5817a
100755
(executable)
--- a/
server/usr/sbin/invirt-remote-create
+++ b/
server/usr/sbin/invirt-remote-create
@@
-19,11
+19,11
@@
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])
- return min(quota_single, quota_total-mem_usage)
+ return min(quota_single, quota_total - mem_usage)
def choose_host():
# Query each of the hosts.
def choose_host():
# Query each of the hosts.
@@
-37,10
+37,12
@@
def main(argv):
operation = argv[1]
machine_name = argv[2]
args = argv[3:]
operation = argv[1]
machine_name = argv[2]
args = argv[3:]
-
+
+ invirt.database.connect()
+
if operation == 'install':
options = dict(arg.split('=', 1) for arg in args)
if operation == 'install':
options = dict(arg.split('=', 1) for arg in args)
- valid_keys = set(('mirror', 'dist', 'arch', 'imagesize', 'noinstall'))
+ valid_keys = set(('mirror', 'dist', 'arch', 'imagesize', 'noinstall', 'preseed'))
if not set(options.keys()).issubset(valid_keys):
print >> sys.stderr, "Invalid argument. Use the help command to see valid arguments to install"
return 1
if not set(options.keys()).issubset(valid_keys):
print >> sys.stderr, "Invalid argument. Use the help command to see valid arguments to install"
return 1
@@
-62,7
+64,6
@@
def main(argv):
return 1
if operation == "create":
return 1
if operation == "create":
- invirt.database.connect()
machine = invirt.database.Machine.query().filter_by(name=machine_name).first()
owner = machine.owner
machine = invirt.database.Machine.query().filter_by(name=machine_name).first()
owner = machine.owner
@@
-70,7
+71,7
@@
def main(argv):
max_memory = maxMemory(owner, vms.keys())
if vm_memory > max_memory:
max_memory = maxMemory(owner, vms.keys())
if vm_memory > max_memory:
- print >>sys.stderr, "owner %s requested %d MB of memory for vm %s; %d MB allowed" % (owner, vm_memory, machine_name, max_memory)
+ print >>sys.stderr, "owner %s requested %d MiB of memory for vm %s; %d MiB allowed" % (owner, vm_memory, machine_name, max_memory)
return 1
host = choose_host()
return 1
host = choose_host()