diff options
author | Daniel Joseph Barnhart Clark <dclark@pobox.com> | 2009-09-25 02:11:48 +0000 |
---|---|---|
committer | Daniel Joseph Barnhart Clark <dclark@pobox.com> | 2009-09-25 02:11:48 +0000 |
commit | 3739583c4da9c7fe3b6d0232842c889f58ac3d08 (patch) | |
tree | f4cf5a8a4d43c88fc2d82b9de482197637ca6fd2 | |
parent | f8b5ed2266d19b51fcf67435584d0ba483adcc8d (diff) | |
download | bcfg2-3739583c4da9c7fe3b6d0232842c889f58ac3d08.tar.gz bcfg2-3739583c4da9c7fe3b6d0232842c889f58ac3d08.tar.bz2 bcfg2-3739583c4da9c7fe3b6d0232842c889f58ac3d08.zip |
Added Fossil to Plugins init and Fossil and Bzr to man 5 bcfg2.conf
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5462 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r-- | man/bcfg2.conf.5 | 8 | ||||
-rw-r--r-- | src/lib/Server/Plugins/__init__.py | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/man/bcfg2.conf.5 b/man/bcfg2.conf.5 index d2bfa03f5..55aae49ac 100644 --- a/man/bcfg2.conf.5 +++ b/man/bcfg2.conf.5 @@ -64,6 +64,10 @@ Bundler is used to describe groups of inter-dependent configuration entries, suc entries. \(bu +.B Bzr +The Bzr plugin allows you to track changes to your Bcfg2 repository using a GNU Bazaar version control backend. Currently, it enables you to get revision information out of your repository for reporting purposes. + +\(bu .B Cfg The Cfg plugin provides a repository to describe configuration file contents for clients. In its simplest form, the Cfg repository is just a directory tree modeled off of the directory tree on your client machines. @@ -84,6 +88,10 @@ The Deps plugin allows you to make a series of assertions like "Package X requir The Editor plugin allows you to partially manage configuration for a file. Its use is not recommended and not well documented. \(bu +.B Fossil +The Fossil plugin allows you to track changes to your Bcfg2 repository using a Fossil SCM version control backend. Currently, it enables you to get revision information out of your repository for reporting purposes. + +\(bu .B Git The Git plugin allows you to track changes to your Bcfg2 repository using a git version control backend. Currently, it enables you to get revision information out of your repository for reporting purposes. diff --git a/src/lib/Server/Plugins/__init__.py b/src/lib/Server/Plugins/__init__.py index abcee623e..4b724c3dd 100644 --- a/src/lib/Server/Plugins/__init__.py +++ b/src/lib/Server/Plugins/__init__.py @@ -8,6 +8,7 @@ __all__ = [ 'Bzr', 'Cfg', 'Decisions', + 'Fossil', 'GBundler', 'Git', 'GroupPatterns', |