moved plugin configuration to plugins.py
This commit is contained in:
parent
b6c53fa09e
commit
384e700c38
2 changed files with 2 additions and 2 deletions
|
@ -192,7 +192,7 @@ NAPALM_ARGS = {}
|
||||||
PAGINATE_COUNT = int(environ.get('PAGINATE_COUNT', 50))
|
PAGINATE_COUNT = int(environ.get('PAGINATE_COUNT', 50))
|
||||||
|
|
||||||
# Enable installed plugins. Add the name of each plugin to the list.
|
# 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.
|
# 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.
|
# Each key in the dictionary is the name of an installed plugin and its value is a dictionary of settings.
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
# To learn how to build images with your required plugins
|
# To learn how to build images with your required plugins
|
||||||
# See https://github.com/netbox-community/netbox-docker/wiki/Using-Netbox-Plugins
|
# See https://github.com/netbox-community/netbox-docker/wiki/Using-Netbox-Plugins
|
||||||
|
|
||||||
# PLUGINS = ["netbox_bgp"]
|
PLUGINS = [ "netbox_topology_views" ]
|
||||||
|
|
||||||
# PLUGINS_CONFIG = {
|
# PLUGINS_CONFIG = {
|
||||||
# "netbox_bgp": {
|
# "netbox_bgp": {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue