2019-07-04 14:10:56 +02:00
|
|
|
import sys
|
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
from startup_script_utils import load_yaml
|
|
|
|
from tenancy.models import TenantGroup
|
|
|
|
|
|
|
|
tenant_groups = load_yaml("/opt/netbox/initializers/tenant_groups.yml")
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
if tenant_groups is None:
|
2021-02-08 11:59:33 +01:00
|
|
|
sys.exit()
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
for params in tenant_groups:
|
2021-02-08 11:59:33 +01:00
|
|
|
tenant_group, created = TenantGroup.objects.get_or_create(**params)
|
2019-07-04 14:10:56 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
if created:
|
|
|
|
print("🔳 Created Tenant Group", tenant_group.name)
|