2021-02-08 10:59:33 +00:00
|
|
|
import sys
|
|
|
|
|
|
2019-07-04 12:10:56 +00:00
|
|
|
from ipam.models import Role
|
2022-04-05 06:34:08 +00:00
|
|
|
from startup_script_utils import load_yaml, split_params
|
2019-07-04 12:10:56 +00:00
|
|
|
|
2021-02-08 10:59:33 +00:00
|
|
|
roles = load_yaml("/opt/netbox/initializers/prefix_vlan_roles.yml")
|
2019-07-04 12:10:56 +00:00
|
|
|
|
2020-02-05 14:31:01 +00:00
|
|
|
if roles is None:
|
2021-02-08 10:59:33 +00:00
|
|
|
sys.exit()
|
2019-07-04 12:10:56 +00:00
|
|
|
|
2020-02-05 14:31:01 +00:00
|
|
|
for params in roles:
|
2022-04-05 06:34:08 +00:00
|
|
|
matching_params, defaults = split_params(params)
|
|
|
|
|
role, created = Role.objects.get_or_create(**matching_params, defaults=defaults)
|
2019-07-04 12:10:56 +00:00
|
|
|
|
2021-02-08 10:59:33 +00:00
|
|
|
if created:
|
|
|
|
|
print("⛹️ Created Prefix/VLAN Role", role.name)
|