summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Options.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Options.py')
-rw-r--r--src/lib/Bcfg2/Options.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Options.py b/src/lib/Bcfg2/Options.py
index 83234a792..f3765a5ec 100644
--- a/src/lib/Bcfg2/Options.py
+++ b/src/lib/Bcfg2/Options.py
@@ -572,6 +572,11 @@ SERVER_DAEMON_GROUP = \
default=0,
cf=('server', 'group'),
cook=get_gid)
+SERVER_VCS_ROOT = \
+ Option('Server VCS repository root',
+ default=None,
+ odesc='<VCS repository root>',
+ cf=('server', 'vcs_root'))
# database options
DB_ENGINE = \
@@ -1078,7 +1083,8 @@ SERVER_COMMON_OPTIONS = dict(repo=SERVER_REPOSITORY,
ca=SERVER_CA,
protocol=SERVER_PROTOCOL,
web_configfile=WEB_CFILE,
- backend=SERVER_BACKEND)
+ backend=SERVER_BACKEND,
+ vcs_root=SERVER_VCS_ROOT)
CRYPT_OPTIONS = dict(encrypt=ENCRYPT,
decrypt=DECRYPT,