Cleanup & Reorg startup scripts (#691)

* Cleanup & Reorg startup scripts
This commit is contained in:
Ryan Merolle 2022-02-03 11:10:39 -05:00 committed by GitHub
parent b9dff0d22e
commit 8860d32f97
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
42 changed files with 1 additions and 57 deletions

View file

@ -0,0 +1,15 @@
import sys
from startup_script_utils import load_yaml
from virtualization.models import ClusterGroup
cluster_groups = load_yaml("/opt/netbox/initializers/cluster_groups.yml")
if cluster_groups is None:
sys.exit()
for params in cluster_groups:
cluster_group, created = ClusterGroup.objects.get_or_create(**params)
if created:
print("🗄️ Created Cluster Group", cluster_group.name)