mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2024-11-07 16:44:02 +01:00
16 lines
311 B
Python
16 lines
311 B
Python
import sys
|
|
|
|
from ipam.models import RIR
|
|
from startup_script_utils import load_yaml
|
|
|
|
rirs = load_yaml("/opt/netbox/initializers/rirs.yml")
|
|
|
|
if rirs is None:
|
|
sys.exit()
|
|
|
|
for params in rirs:
|
|
rir, created = RIR.objects.get_or_create(**params)
|
|
|
|
if created:
|
|
print("🗺️ Created RIR", rir.name)
|