netbox-docker/startup_scripts/050_manufacturers.py

20 lines
513 B
Python
Raw Permalink Normal View History

2018-10-15 15:14:11 +02:00
from dcim.models import Manufacturer
from ruamel.yaml import YAML
from pathlib import Path
import sys
2018-10-15 15:14:11 +02:00
file = Path('/opt/netbox/initializers/manufacturers.yml')
if not file.is_file():
sys.exit()
with file.open('r') as stream:
2018-10-15 15:14:11 +02:00
yaml = YAML(typ='safe')
manufacturers = yaml.load(stream)
if manufacturers is not None:
2018-10-16 11:05:28 +02:00
for params in manufacturers:
manufacturer, created = Manufacturer.objects.get_or_create(**params)
2018-10-15 15:14:11 +02:00
if created:
print("🏭 Created Manufacturer", manufacturer.name)