diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2007-01-23 21:37:18 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2007-01-23 21:37:18 +0000 |
commit | c241c331aed9a3541e03ab97bb644d3e92b957a7 (patch) | |
tree | cc9bff62110528141e63a8af1c3dd94442bcb4d5 /src/lib/Client/Tools | |
parent | b7eaacaef36b489a154d498cc054ebdc520c1121 (diff) | |
download | bcfg2-c241c331aed9a3541e03ab97bb644d3e92b957a7.tar.gz bcfg2-c241c331aed9a3541e03ab97bb644d3e92b957a7.tar.bz2 bcfg2-c241c331aed9a3541e03ab97bb644d3e92b957a7.zip |
Commit infrastructure for Action driver
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2711 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Client/Tools')
-rw-r--r-- | src/lib/Client/Tools/__init__.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/Client/Tools/__init__.py b/src/lib/Client/Tools/__init__.py index 62e2b52c8..142084792 100644 --- a/src/lib/Client/Tools/__init__.py +++ b/src/lib/Client/Tools/__init__.py @@ -87,7 +87,11 @@ class Tool: def BundleUpdated(self, _): '''This callback is used when bundle updates occur''' - pass + return + + def BundleNotUpdated(self, _): + '''This callback is used when a bundle is not updated''' + return def Inventory(self, structures=[]): '''Dispatch verify calls to underlying methods''' |