diff options
-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', |