mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2025-12-10 13:52:38 +00:00
Merge pull request #1 from M00nr41n/M00nr41n-patch-NAPALM_ARGS
Added NAPALM_ARGS from environment
This commit is contained in:
commit
6feb6b9095
|
|
@ -153,7 +153,7 @@ NAPALM_TIMEOUT = int(os.environ.get('NAPALM_TIMEOUT', 30))
|
|||
|
||||
# NAPALM optional arguments (see http://napalm.readthedocs.io/en/latest/support/#optional-arguments). Arguments must
|
||||
# be provided as a dictionary.
|
||||
NAPALM_ARGS = {}
|
||||
NAPALM_ARGS = os.environ.get('NAPALM_ARGS', {})
|
||||
|
||||
# Determine how many objects to display per page within a list. (Default: 50)
|
||||
PAGINATE_COUNT = int(os.environ.get('PAGINATE_COUNT', 50))
|
||||
|
|
|
|||
Loading…
Reference in a new issue