netbox-docker/startup_scripts/030_regions.py

32 lines
732 B
Python
Raw Normal View History

2018-10-15 15:13:26 +02:00
from dcim.models import Region
from ruamel.yaml import YAML
from pathlib import Path
import sys
2018-10-15 15:13:26 +02:00
file = Path('/opt/netbox/initializers/regions.yml')
if not file.is_file():
sys.exit()
with file.open('r') as stream:
2018-10-15 15:13:26 +02:00
yaml=YAML(typ='safe')
regions = yaml.load(stream)
2018-10-16 11:05:28 +02:00
optional_assocs = {
'parent': (Region, 'name')
}
2018-10-15 15:13:26 +02:00
if regions is not None:
2018-10-16 11:05:28 +02:00
for params in regions:
for assoc, details in optional_assocs.items():
if assoc in params:
model, field = details
2018-10-16 13:26:13 +02:00
query = { field: params.pop(assoc) }
2018-10-16 11:05:28 +02:00
params[assoc] = model.objects.get(**query)
2018-10-15 15:13:26 +02:00
2018-10-16 11:05:28 +02:00
region, created = Region.objects.get_or_create(**params)
2018-10-15 15:13:26 +02:00
if created:
print("🌐 Created region", region.name)