From b5aff1575d858637c872cde1466a11990a6caa4f Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Thu, 9 Apr 2020 15:45:38 -0400 Subject: [PATCH] Add plugins settings to example config --- netbox/netbox/configuration.example.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/netbox/netbox/configuration.example.py b/netbox/netbox/configuration.example.py index 6e67d228f..0c9182ab1 100644 --- a/netbox/netbox/configuration.example.py +++ b/netbox/netbox/configuration.example.py @@ -175,6 +175,12 @@ NAPALM_ARGS = {} # Determine how many objects to display per page within a list. (Default: 50) PAGINATE_COUNT = 50 +# Enable installed plugins. Add the name of each plugin to the list. +PLUGINS = [] + +# Configure enabled plugins. This should be a dictionary of dictionaries, mapping each plugin by name to its configuration parameters. +PLUGINS_CONFIG = {} + # When determining the primary IP address for a device, IPv6 is preferred over IPv4 by default. Set this to True to # prefer IPv4 instead. PREFER_IPV4 = False