diff options
author | Chris St. Pierre <chris.a.st.pierre@gmail.com> | 2012-10-18 11:33:38 -0400 |
---|---|---|
committer | Chris St. Pierre <chris.a.st.pierre@gmail.com> | 2012-10-30 09:11:53 -0400 |
commit | 63a5b62dba190007634e1e0f2f834057b63aeafd (patch) | |
tree | beb6d51675d43fe8303aff62a3c9272e82e67520 /src/lib/Bcfg2/Options.py | |
parent | 7b9987d1835ff422e21f0b2f36c93d956192bf4b (diff) | |
download | bcfg2-63a5b62dba190007634e1e0f2f834057b63aeafd.tar.gz bcfg2-63a5b62dba190007634e1e0f2f834057b63aeafd.tar.bz2 bcfg2-63a5b62dba190007634e1e0f2f834057b63aeafd.zip |
added Git.Update RMI, ability to base bcfg2 VCS repo at a different directory than the repo root
Diffstat (limited to 'src/lib/Bcfg2/Options.py')
-rw-r--r-- | src/lib/Bcfg2/Options.py | 8 |
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, |