1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-02-06 04:25:18 +00:00

instance poweron checks is_template attribute. templates should not be started.

This commit is contained in:
Ing. Jan KRCMAR 2018-10-01 10:30:22 +02:00
parent cdb5c4f412
commit dd3dc08614

View file

@ -138,6 +138,10 @@ def instances(request):
instance.compute.password,
instance.compute.type)
if 'poweron' in request.POST:
if instance.is_template:
msg = _("Templates cannot be started.")
error_messages.append(msg)
else:
msg = _("Power On")
addlogmsg(request.user.username, instance.name, msg)
conn.start(name)
@ -412,6 +416,10 @@ def instance(request, compute_id, vname):
if request.method == 'POST':
if 'poweron' in request.POST:
if instance.is_template:
msg = _("Templates cannot be started.")
error_messages.append(msg)
else:
conn.start()
msg = _("Power On")
addlogmsg(request.user.username, instance.name, msg)