16 lines
389 B
Python
16 lines
389 B
Python
import sys
|
|
|
|
from dcim.models import Manufacturer
|
|
from startup_script_utils import load_yaml
|
|
|
|
manufacturers = load_yaml("/opt/netbox/initializers/manufacturers.yml")
|
|
|
|
if manufacturers is None:
|
|
sys.exit()
|
|
|
|
for params in manufacturers:
|
|
manufacturer, created = Manufacturer.objects.get_or_create(**params)
|
|
|
|
if created:
|
|
print("🏭 Created Manufacturer", manufacturer.name)
|