From b60a3f0b1e1e1aa39ddcac6eee2b6397f01d250f Mon Sep 17 00:00:00 2001 From: Damien Arnodo Date: Wed, 7 Jan 2026 14:56:35 +0000 Subject: [PATCH] fix: move netbox_branching to end of PLUGINS list (required) --- images/netbox/plugins.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/images/netbox/plugins.py b/images/netbox/plugins.py index ae0b722..6d9efa2 100644 --- a/images/netbox/plugins.py +++ b/images/netbox/plugins.py @@ -7,8 +7,8 @@ # Liste des plugins activés # Doit correspondre aux packages installés dans plugin_requirements.txt +# IMPORTANT: netbox_branching DOIT être le dernier plugin de la liste PLUGINS = [ - "netbox_branching", "netbox_bgp", "netbox_secrets", "netbox_topology_views", @@ -16,6 +16,7 @@ PLUGINS = [ # "netbox_acls", # "netbox_qrcode", # "netbox_proxbox", + "netbox_branching", # MUST be last ] # Configuration des plugins