diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/Bcfg2/Client/Tools/SELinux.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Bcfg2/Client/Tools/SELinux.py b/src/lib/Bcfg2/Client/Tools/SELinux.py index 77937c70c..16aeababe 100644 --- a/src/lib/Bcfg2/Client/Tools/SELinux.py +++ b/src/lib/Bcfg2/Client/Tools/SELinux.py @@ -122,8 +122,8 @@ class SELinux(Bcfg2.Client.Tools.Tool): self.logger.debug("Committing SELinux transaction") semanage.finish() self.txn = False - for func, args, kwargs in self.post_txn_queue: - func(*args, **kwargs) + for func, arg, kwargs in self.post_txn_queue: + states[arg] = func(*arg, **kwargs) def InstallSELinux(self, entry): """Dispatch install to the proper method according to type""" |