Index: branches/ariel/xmldumps-backup/worker.py |
— | — | @@ -419,7 +419,10 @@ |
420 | 420 | if (item.name() == job): |
421 | 421 | item.setToBeRun(True) |
422 | 422 | return True |
| 423 | + if job == "noop": |
| 424 | + return True |
423 | 425 | print "No job of the name specified exists. Choose one of the following:" |
| 426 | + print "noop (runs no job but rewrites md5sums file and resets latest links" |
424 | 427 | print "tables (includes all items below that end in 'table'" |
425 | 428 | for item in self.dumpItems: |
426 | 429 | print "%s " % item.name() |