From b9cac97b73c1c08213db6272de11c03711491486 Mon Sep 17 00:00:00 2001 From: Abhimanyu Saharan Date: Fri, 26 Jan 2024 01:16:07 +0530 Subject: [PATCH] remove GIT_PATH #14942 --- docs/configuration/system.md | 8 -------- netbox/netbox/settings.py | 1 - 2 files changed, 9 deletions(-) diff --git a/docs/configuration/system.md b/docs/configuration/system.md index db77f8aff..806839778 100644 --- a/docs/configuration/system.md +++ b/docs/configuration/system.md @@ -73,14 +73,6 @@ Determines if localization features are enabled or not. This should only be enab --- -## GIT_PATH - -Default: `git` - -The system path to the `git` executable, used by the synchronization backend for remote git repositories. - ---- - ## HTTP_PROXIES Default: None diff --git a/netbox/netbox/settings.py b/netbox/netbox/settings.py index fa8606707..0be67abe0 100644 --- a/netbox/netbox/settings.py +++ b/netbox/netbox/settings.py @@ -122,7 +122,6 @@ EVENTS_PIPELINE = getattr(configuration, 'EVENTS_PIPELINE', ( EXEMPT_VIEW_PERMISSIONS = getattr(configuration, 'EXEMPT_VIEW_PERMISSIONS', []) FIELD_CHOICES = getattr(configuration, 'FIELD_CHOICES', {}) FILE_UPLOAD_MAX_MEMORY_SIZE = getattr(configuration, 'FILE_UPLOAD_MAX_MEMORY_SIZE', 2621440) -GIT_PATH = getattr(configuration, 'GIT_PATH', 'git') HTTP_PROXIES = getattr(configuration, 'HTTP_PROXIES', None) INTERNAL_IPS = getattr(configuration, 'INTERNAL_IPS', ('127.0.0.1', '::1')) JINJA2_FILTERS = getattr(configuration, 'JINJA2_FILTERS', {})