Cleanup & Reorg startup scripts (#691)
* Cleanup & Reorg startup scripts
This commit is contained in:
15
startup_scripts/280_prefix_vlan_roles.py
Normal file
15
startup_scripts/280_prefix_vlan_roles.py
Normal file
@@ -0,0 +1,15 @@
|
||||
import sys
|
||||
|
||||
from ipam.models import Role
|
||||
from startup_script_utils import load_yaml
|
||||
|
||||
roles = load_yaml("/opt/netbox/initializers/prefix_vlan_roles.yml")
|
||||
|
||||
if roles is None:
|
||||
sys.exit()
|
||||
|
||||
for params in roles:
|
||||
role, created = Role.objects.get_or_create(**params)
|
||||
|
||||
if created:
|
||||
print("⛹️ Created Prefix/VLAN Role", role.name)
|
Reference in New Issue
Block a user