From 384e700c38b48730484c5f875a277edc311fd716 Mon Sep 17 00:00:00 2001 From: hakasapl Date: Tue, 5 Jul 2022 12:23:46 -0400 Subject: [PATCH] moved plugin configuration to plugins.py --- configuration/configuration.py | 2 +- configuration/plugins.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration/configuration.py b/configuration/configuration.py index 64ef4a6..1db6051 100644 --- a/configuration/configuration.py +++ b/configuration/configuration.py @@ -192,7 +192,7 @@ NAPALM_ARGS = {} PAGINATE_COUNT = int(environ.get('PAGINATE_COUNT', 50)) # Enable installed plugins. Add the name of each plugin to the list. -PLUGINS = [ "netbox_topology_views" ] +PLUGINS = [] # Plugins configuration settings. These settings are used by various plugins that the user may have installed. # Each key in the dictionary is the name of an installed plugin and its value is a dictionary of settings. diff --git a/configuration/plugins.py b/configuration/plugins.py index c0b1a1f..9544884 100644 --- a/configuration/plugins.py +++ b/configuration/plugins.py @@ -4,7 +4,7 @@ # To learn how to build images with your required plugins # See https://github.com/netbox-community/netbox-docker/wiki/Using-Netbox-Plugins -# PLUGINS = ["netbox_bgp"] +PLUGINS = [ "netbox_topology_views" ] # PLUGINS_CONFIG = { # "netbox_bgp": {