diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2008-08-06 19:11:41 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2008-08-06 19:11:41 +0000 |
commit | 2e688bca6e9bc0cabc321198cc6e8b46c414227a (patch) | |
tree | 99fd4939070d79d403e09ff1a2962ea9cf71c730 /src/lib/Server/Plugin.py | |
parent | 83f244ac8edd86f678aea99abe3d74cbc342a100 (diff) | |
download | bcfg2-2e688bca6e9bc0cabc321198cc6e8b46c414227a.tar.gz bcfg2-2e688bca6e9bc0cabc321198cc6e8b46c414227a.tar.bz2 bcfg2-2e688bca6e9bc0cabc321198cc6e8b46c414227a.zip |
Add GetExtra plugin stub method
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@4860 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Server/Plugin.py')
-rw-r--r-- | src/lib/Server/Plugin.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/Server/Plugin.py b/src/lib/Server/Plugin.py index 4fa4e2cbe..30f6056f5 100644 --- a/src/lib/Server/Plugin.py +++ b/src/lib/Server/Plugin.py @@ -107,6 +107,10 @@ class StatisticsPlugin(Plugin): def WriteBack(self): pass + def GetExtra(self, client): + return [] + + # the rest of the file contains classes for coherent file caching class FileBacked(object): |