summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2004-11-11 15:49:05 +0000
committerNarayan Desai <desai@mcs.anl.gov>2004-11-11 15:49:05 +0000
commit6a62dd742a08357de88bce95ae5b26c622d5f608 (patch)
treefe16f5ed2774981dee0075c80902ebc1a48a2888 /doc
parenta665fb536a46d9f9b9e775d3797d8c5c79939982 (diff)
downloadbcfg2-6a62dd742a08357de88bce95ae5b26c622d5f608.tar.gz
bcfg2-6a62dd742a08357de88bce95ae5b26c622d5f608.tar.bz2
bcfg2-6a62dd742a08357de88bce95ae5b26c622d5f608.zip
update generator doc
(Logical change 1.151) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@677 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'doc')
-rw-r--r--doc/generators.txt43
1 files changed, 32 insertions, 11 deletions
diff --git a/doc/generators.txt b/doc/generators.txt
index 3b3f08d29..a976bfdcc 100644
--- a/doc/generators.txt
+++ b/doc/generators.txt
@@ -1,15 +1,32 @@
-A generator is logic, embedded in bcfg2, that constructs configuration
-fragments for clients. In general, many generators are used concurrently
-inside of bcfg2. The main generators included with bcfg2 are:
+A generator is a module, loaded into bcfg2's address space, that can
+be called to produce configuration data for clients. The code contains
+can do anything, so any configuration pattern can be modeled. These
+are useful for a variety of tasks; we currently use this interface to
+define all of our sources of configuration logic. While this construct
+was available in bcfg1, it suffered from a variety of issues, mainly
+related to performance. The new API provides for high enough speed
+execution that the generator API is the sole provider of configuration
+data to the bcfg2 server.
-sshbase - manage and retain ssh keys properly across rebuilds
-cfg - a configuration file repository
-pkgmgr - provides available packages on an image by image basis
-servicemgr - manage service activations
+Several generators have been implemented in bcfg2:
+Cfg: A basic configuration file repository
+SSHBase: A ssh key management system
+Pkgmgr: Provides information about available software
+Svcmgr: Provides information about available services, and activations
+Debconf: Generator debconf settings based on probed client data
-Generators are used solely for configuration file production at this
-point, hence their sole interface exists for the purpose of generating
-configuration entities.
+Any of these generators can be enabled in bcfg2.conf, and custom
+generators can similarly be added.
+
+Generators are during the client configuration process at two
+times. First, generators provide client-side probes. These can be used
+to determine local client state where appropriate. Generators can
+provide a list of probes for a client to execute. The data generated
+by this client execution is routed back to the source generator, which
+can then use this data to generate the client configuration.
+
+The second function is to provide explicit values for the elements of
+a client configuration. This function is used in the following way:
When a client requests its configuration, the bcfg2 daemon queries all
structuring agents for pertinent configurations. In general, this
@@ -50,4 +67,8 @@ executed. Output is collected and sent back to the bcfg2 server. the
source attribute is used to determine which data belongs to which
generator, and the AcceptProbeData method is called for each probe
result belonging to the generator. This data may then be used in
-constructing configuration elements for the client. \ No newline at end of file
+constructing configuration elements for the client.
+
+There is a generator base class that provides skeleton methods, which
+custom generators can subclass. It is named
+Bcfg2.Server.Generator.Generator. \ No newline at end of file