From 827151ffa0d16aa50d4074fb981c78966da138a7 Mon Sep 17 00:00:00 2001 From: Sol Jerome Date: Thu, 10 Jun 2010 20:26:23 +0000 Subject: doc: Replace ConfigFile with Path references Signed-off-by: Sol Jerome git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5918 ce84e21b-d406-0410-9b95-82705330c041 --- doc/development/index.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/development') diff --git a/doc/development/index.txt b/doc/development/index.txt index bcfa2b56c..0cfe4ec42 100644 --- a/doc/development/index.txt +++ b/doc/development/index.txt @@ -188,7 +188,7 @@ Example Plugin def __init__(self, core, datastore): Bcfg2.Server.Plugin.Plugin.__init__(self, core, datastore) - self.Entries = {'ConfigFile':{'/etc/foo.conf': self.buildFoo}} + self.Entries = {'Path':{'/etc/foo.conf': self.buildFoo}} def myfunction(self): '''function for xmlrpc rmi call''' @@ -197,7 +197,7 @@ Example Plugin def buildFoo(self, entry, metadata): '''Bind per-client information into entry based on metadata''' - entry.attrib.update({'owner':'root', 'group':'root', 'perms':'644'}) + entry.attrib.update({'type':'file', 'owner':'root', 'group':'root', 'perms':'644'}) entry.text = '''contents of foo.conf''' Example Connector -- cgit v1.2.3-1-g7c22