parent optional assoc in tenant_groups initializer
initialize a tenant group with parent.
This commit is contained in:
parent
58a1579832
commit
cec327fb7e
1 changed files with 16 additions and 6 deletions
|
@ -1,14 +1,24 @@
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from startup_script_utils import load_yaml
|
|
||||||
from tenancy.models import TenantGroup
|
from tenancy.models import TenantGroup
|
||||||
|
from startup_script_utils import load_yaml
|
||||||
|
|
||||||
tenant_groups = load_yaml("/opt/netbox/initializers/tenant_groups.yml")
|
tenant_groups = load_yaml('/opt/netbox/initializers/tenant_groups.yml')
|
||||||
|
|
||||||
if tenant_groups is None:
|
if tenant_groups is None:
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
|
optional_assocs = {
|
||||||
|
'parent': (TenantGroup, 'name'),
|
||||||
|
}
|
||||||
|
|
||||||
for params in tenant_groups:
|
for params in tenant_groups:
|
||||||
|
for assoc, details in optional_assocs.items():
|
||||||
|
if assoc in params:
|
||||||
|
model, field = details
|
||||||
|
query = { field: params.pop(assoc) }
|
||||||
|
params[assoc] = model.objects.get(**query)
|
||||||
|
|
||||||
tenant_group, created = TenantGroup.objects.get_or_create(**params)
|
tenant_group, created = TenantGroup.objects.get_or_create(**params)
|
||||||
|
|
||||||
if created:
|
if created:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue