We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de4301a commit 78a7bcfCopy full SHA for 78a7bcf
plugins/module_utils/module_base.py
@@ -446,6 +446,10 @@ def _update(self):
446
else:
447
return ('', '', '')
448
449
+ def _run_post(self):
450
+ """ used to do some post-processing like adding results or decoding diff entries """
451
+ pass
452
+
453
# We take params here for use with pfsense_aggregate and the test framework
454
def run(self, params):
455
""" process input params to add/update/delete """
@@ -464,6 +468,8 @@ def run(self, params):
464
468
465
469
self._add()
466
470
471
+ self._run_post()
472
467
473
##############################
474
# Logging
475
#
0 commit comments