correct startup script order for asns
This commit is contained in:
parent
c93e0e5a6b
commit
9c84ceb856
18 changed files with 2 additions and 0 deletions
15
startup_scripts/380_cluster_groups.py
Normal file
15
startup_scripts/380_cluster_groups.py
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue