Rename 020_tenant_groups.py to 040_tenant_groups.py
This commit is contained in:
parent
46ffae3030
commit
3c23f21075
1 changed files with 0 additions and 0 deletions
25
startup_scripts/040_tenant_groups.py
Normal file
25
startup_scripts/040_tenant_groups.py
Normal file
|
@ -0,0 +1,25 @@
|
|||
import sys
|
||||
|
||||
from startup_script_utils import load_yaml
|
||||
from tenancy.models import TenantGroup
|
||||
|
||||
tenant_groups = load_yaml("/opt/netbox/initializers/tenant_groups.yml")
|
||||
|
||||
if tenant_groups is None:
|
||||
sys.exit()
|
||||
|
||||
optional_assocs = {
|
||||
'parent': (TenantGroup, 'name'),
|
||||
}
|
||||
|
||||
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)
|
||||
|
||||
if created:
|
||||
print("🔳 Created Tenant Group", tenant_group.name)
|
Loading…
Add table
Add a link
Reference in a new issue