2021-02-08 11:59:33 +01:00
|
|
|
import sys
|
2020-05-27 09:04:44 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
from dcim.models import DeviceRole
|
2020-02-05 15:31:01 +01:00
|
|
|
from startup_script_utils import load_yaml
|
2021-02-08 11:59:33 +01:00
|
|
|
from utilities.choices import ColorChoices
|
2018-12-19 14:25:58 +01:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
device_roles = load_yaml("/opt/netbox/initializers/device_roles.yml")
|
2018-12-19 14:25:58 +01:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
if device_roles is None:
|
2021-02-08 11:59:33 +01:00
|
|
|
sys.exit()
|
2018-10-15 15:15:23 +02:00
|
|
|
|
2020-02-05 15:31:01 +01:00
|
|
|
for params in device_roles:
|
2018-10-15 15:15:23 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
if "color" in params:
|
|
|
|
color = params.pop("color")
|
2018-10-15 15:15:23 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
for color_tpl in ColorChoices:
|
|
|
|
if color in color_tpl:
|
|
|
|
params["color"] = color_tpl[0]
|
2018-10-16 11:05:28 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
device_role, created = DeviceRole.objects.get_or_create(**params)
|
2018-10-15 15:15:23 +02:00
|
|
|
|
2021-02-08 11:59:33 +01:00
|
|
|
if created:
|
|
|
|
print("🎨 Created device role", device_role.name)
|