Fixed VM interface creation for Netbox 2.9

This commit is contained in:
Tobias Genannt 2020-08-24 11:04:06 +02:00
parent 23c3240863
commit 9fae2b0f74
1 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,4 @@
from dcim.models import Interface
from virtualization.models import VirtualMachine
from virtualization.models import VirtualMachine, VMInterface
from extras.models import CustomField, CustomFieldValue
from startup_script_utils import load_yaml
import sys
@ -22,7 +21,7 @@ for params in interfaces:
params[assoc] = model.objects.get(**query)
interface, created = Interface.objects.get_or_create(**params)
interface, created = VMInterface.objects.get_or_create(**params)
if created:
if custom_fields is not None: