mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2024-11-07 16:44:02 +01:00
b46bd58e0a
With this the configuration is moved to /etc/netbox/config and the default reports directory is set to /etc/netbox/reports. This enables the user to mount reports from a config map or persistent volume in OpenShift.
11 lines
305 B
Python
11 lines
305 B
Python
import importlib.util
|
|
import sys
|
|
|
|
try:
|
|
spec = importlib.util.spec_from_file_location('configuration', '/etc/netbox/config/configuration.py')
|
|
module = importlib.util.module_from_spec(spec)
|
|
spec.loader.exec_module(module)
|
|
sys.modules['netbox.configuration'] = module
|
|
except:
|
|
raise ImportError('')
|