Răsfoiți Sursa

Fixes #4481: Remove extraneous material from example configuration file

Jeremy Stretch 5 ani în urmă
părinte
comite
e97205922c
1 a modificat fișierele cu 8 adăugiri și 14 ștergeri
  1. 8 14
      netbox/netbox/configuration.example.py

+ 8 - 14
netbox/netbox/configuration.example.py

@@ -178,8 +178,14 @@ 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 = {}
+# 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.
+# PLUGINS_CONFIG = {
+#     'my_plugin': {
+#         'foo': 'bar',
+#         'buzz': 'bazz'
+#     }
+# }
 
 # When determining the primary IP address for a device, IPv6 is preferred over IPv4 by default. Set this to True to
 # prefer IPv4 instead.
@@ -209,18 +215,6 @@ RELEASE_CHECK_URL = None
 # this setting is derived from the installed location.
 # SCRIPTS_ROOT = '/opt/netbox/netbox/scripts'
 
-# Enable plugin support in netbox. This setting must be enabled for any installed plugins to function.
-PLUGINS_ENABLED = False
-
-# 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.
-# PLUGINS_CONFIG = {
-#     'my_plugin': {
-#         'foo': 'bar',
-#         'buzz': 'bazz'
-#     }
-# }
-
 # By default, NetBox will store session data in the database. Alternatively, a file path can be specified here to use
 # local file storage instead. (This can be useful for enabling authentication on a standby instance with read-only
 # database access.) Note that the user as which NetBox runs must have read and write permissions to this path.