diff options
author | Chris St. Pierre <chris.a.st.pierre@gmail.com> | 2012-06-21 12:34:03 -0400 |
---|---|---|
committer | Chris St. Pierre <chris.a.st.pierre@gmail.com> | 2012-06-21 12:34:03 -0400 |
commit | e93478e013d1cda7f77771f622f5c99ac0199979 (patch) | |
tree | b122f442cbe90bbdf93f932b19a7ee4fb1d2495e /src/lib/Bcfg2/Server/Plugins | |
parent | a01b57c799d0eb24c4122003c0c295026edc48ba (diff) | |
download | bcfg2-e93478e013d1cda7f77771f622f5c99ac0199979.tar.gz bcfg2-e93478e013d1cda7f77771f622f5c99ac0199979.tar.bz2 bcfg2-e93478e013d1cda7f77771f622f5c99ac0199979.zip |
fixed changed events in Cfg; stringification of FAM objects
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins')
-rw-r--r-- | src/lib/Bcfg2/Server/Plugins/Cfg/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Cfg/__init__.py b/src/lib/Bcfg2/Server/Plugins/Cfg/__init__.py index 15fd71644..5293d7c94 100644 --- a/src/lib/Bcfg2/Server/Plugins/Cfg/__init__.py +++ b/src/lib/Bcfg2/Server/Plugins/Cfg/__init__.py @@ -198,6 +198,7 @@ class CfgEntrySet(Bcfg2.Server.Plugin.EntrySet): return elif action == 'changed': self.entries[event.filename].handle_event(event) + return elif action == 'deleted': del self.entries[event.filename] return |