2018-10-15 15:14:42 +02:00
|
|
|
from dcim.models import RackRole
|
|
|
|
from ruamel.yaml import YAML
|
|
|
|
from utilities.forms import COLOR_CHOICES
|
|
|
|
|
2018-12-19 14:25:58 +01:00
|
|
|
from pathlib import Path
|
|
|
|
import sys
|
|
|
|
|
|
|
|
file = Path('/opt/netbox/initializers/rack_roles.yml')
|
|
|
|
if not file.is_file():
|
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
with file.open('r') as stream:
|
2018-10-15 15:14:42 +02:00
|
|
|
yaml=YAML(typ='safe')
|
|
|
|
rack_roles = yaml.load(stream)
|
|
|
|
|
|
|
|
if rack_roles is not None:
|
2018-10-16 11:05:28 +02:00
|
|
|
for params in rack_roles:
|
|
|
|
if 'color' in params:
|
|
|
|
color = params.pop('color')
|
2018-10-15 15:14:42 +02:00
|
|
|
|
2018-10-16 11:05:28 +02:00
|
|
|
for color_tpl in COLOR_CHOICES:
|
|
|
|
if color in color_tpl:
|
2018-10-16 13:26:13 +02:00
|
|
|
params['color'] = color_tpl[0]
|
2018-10-15 15:14:42 +02:00
|
|
|
|
2018-10-16 11:05:28 +02:00
|
|
|
rack_role, created = RackRole.objects.get_or_create(**params)
|
2018-10-15 15:14:42 +02:00
|
|
|
|
|
|
|
if created:
|
2018-10-30 10:51:43 +01:00
|
|
|
print("🎨 Created rack role", rack_role.name)
|