mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2025-08-09 00:04:46 +02:00
Allow sites to be initialized with tenants
This commit is contained in:
15
startup_scripts/020_tenant_groups.py
Normal file
15
startup_scripts/020_tenant_groups.py
Normal file
@ -0,0 +1,15 @@
|
||||
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()
|
||||
|
||||
for params in tenant_groups:
|
||||
tenant_group, created = TenantGroup.objects.get_or_create(**params)
|
||||
|
||||
if created:
|
||||
print("🔳 Created Tenant Group", tenant_group.name)
|
Reference in New Issue
Block a user