diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2009-01-06 17:32:51 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2009-01-06 17:32:51 +0000 |
commit | d887ad88674aef96f96ab0ff97c54617b8d715e7 (patch) | |
tree | 12b1da1a6b3943a2534c3dd7cbda342a79dfeb5e /doc/plugin-roles | |
parent | a9388f7859586d5d98e815efdcf8d6a85b973bef (diff) | |
download | bcfg2-d887ad88674aef96f96ab0ff97c54617b8d715e7.tar.gz bcfg2-d887ad88674aef96f96ab0ff97c54617b8d715e7.tar.bz2 bcfg2-d887ad88674aef96f96ab0ff97c54617b8d715e7.zip |
Implement generic structure validators and reimplement Deps as one
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5005 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'doc/plugin-roles')
-rw-r--r-- | doc/plugin-roles | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/plugin-roles b/doc/plugin-roles new file mode 100644 index 000000000..d34a88c77 --- /dev/null +++ b/doc/plugin-roles @@ -0,0 +1,30 @@ +This documents available plugin roles. + +1) list of plugin roles + +| Role | Class | Status | +|---------------+--------------------+---------------| +| Generator | Generator | done | +| Structure | Structure | done | +| Pull | PullSource | class defined | +| Metadata | Metadata | done | +| Connector | Connector | class defined | +| Probing | Probing | done | +| Decision | Decision | done | +| Remote | Remote | none | +| Statistics | Statistics | class defined | +| Structure Val | StructureValidator | done | +| Goals Val | GoalValidator | class defined | +| Syncing | Syncing | none | +|---------------+--------------------+---------------| + + +2) Configuration of plugins + +3) Implementation Plan + +* Switch Plugin.__name__ => Plugin.name (Fix spurious pylint errors) [done] +* Switch all plugins to new class hierarchy [done] +* Fix Core to use memberships in new classes + + |