diff options
Diffstat (limited to 'rpki/rpkic.py')
-rw-r--r-- | rpki/rpkic.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/rpki/rpkic.py b/rpki/rpkic.py index d90ad690..5e0efe0f 100644 --- a/rpki/rpkic.py +++ b/rpki/rpkic.py @@ -868,6 +868,20 @@ class main(Cmd): @parsecmd(argsubparsers) + def do_force_run_now(self, args): + """ + Force rpkid to run periodic tasks for this Tenant immediately. + + This is not usually necessary, as rpkid runs all of these + tasks on a regular schedule, but this command can be useful + occasionally when configuration change is taking a long time + to percolate through a series of parent/child exchanges. + """ + + self.zoo.run_rpkid_now() + + + @parsecmd(argsubparsers) def do_up_down_rekey(self, args): """ Initiate a "rekey" operation. |