Commit 1d35cf35 by Dudás Ádám

vm: change variable name to more descriptive

parent 3e3e5bb4
...@@ -103,13 +103,13 @@ class Interface(Model): ...@@ -103,13 +103,13 @@ class Interface(Model):
# TODO change Host's mac field's type to EUI in firewall # TODO change Host's mac field's type to EUI in firewall
host.mac = str(cls.generate_mac(instance, vlan)) host.mac = str(cls.generate_mac(instance, vlan))
host.hostname = instance.vm_name host.hostname = instance.vm_name
# Get adresses from firewall # Get addresses from firewall
if base_activity is None: if base_activity is None:
act = instance_activity(code_suffix='allocating_ip', act_ctx = instance_activity(code_suffix='allocating_ip',
instance=instance, user=owner) instance=instance, user=owner)
else: else:
act = base_activity.sub_activity('allocating_ip') act_ctx = base_activity.sub_activity('allocating_ip')
with act as act: with act_ctx as act:
addresses = vlan.get_new_address() addresses = vlan.get_new_address()
host.ipv4 = addresses['ipv4'] host.ipv4 = addresses['ipv4']
host.ipv6 = addresses['ipv6'] host.ipv6 = addresses['ipv6']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment