mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2025-08-09 08:05:08 +02:00
rebase and fix script order
This commit is contained in:
committed by
Christian Mäder
parent
7f8cc76af6
commit
a0f7737916
14
startup_scripts/135_cluster_groups.py
Normal file
14
startup_scripts/135_cluster_groups.py
Normal file
@ -0,0 +1,14 @@
|
||||
from virtualization.models import ClusterGroup
|
||||
from startup_script_utils import load_yaml
|
||||
import sys
|
||||
|
||||
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)
|
Reference in New Issue
Block a user