2021-02-08 11:59:33 +01:00
|
|
|
import sys
|
|
|
|
|
2018-10-15 15:14:11 +02:00
|
|
|
from dcim.models import Manufacturer
|
2022-04-05 08:34:08 +02:00
|
|
|
from startup_script_utils import load_yaml, split_params
|
2018-10-15 15:14:11 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
manufacturers = load_yaml("/opt/netbox/initializers/manufacturers.yml")
|
2018-12-19 14:25:58 +01:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
if manufacturers is None:
|
2021-02-08 11:59:33 +01:00
|
|
|
sys.exit()
|
2018-10-15 15:14:11 +02:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
for params in manufacturers:
|
2022-04-05 08:34:08 +02:00
|
|
|
matching_params, defaults = split_params(params)
|
|
|
|
manufacturer, created = Manufacturer.objects.get_or_create(**matching_params, defaults=defaults)
|
2018-10-15 15:14:11 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
if created:
|
|
|
|
print("🏭 Created Manufacturer", manufacturer.name)
|