TaskForest
A simple, expressive, open-source, text-file-based Job Scheduler with console, HTTP, and RESTful API interfaces.
Documentation
  1. Downloading TaskForest
  2. Installing TaskForest
  3. Configuring TaskForest
    1. Jobs & Families
    2. Calendars
    3. Automatic Retries
    4. Sending Emails
    5. Options
    6. Configuration File
  4. Running TaskForest
  5. Running the TaskForest Web Server
  6. Web Server Security
  7. Checking TaskForest Status
  8. Rerunning a Job
  9. Marking a Job
  10. Tokens
  11. Releasing all Dependencies from a Job
  12. Putting a Job on Hold
  13. Releasing a Hold Off a Job
  14. HOWTO
  15. The RESTful Web Service
  16. Frequently Asked Questions (FAQ)
  17. Bugs
  18. Change Log
  19. Author
  20. Acknowledgements
  21. Copyright

Releasing a Hold Off a Job

When you put a job on hold, it will not run during the current day even if all its dependencies are met. It will only be run after the hold is released. Even after the hold is released, its dependencies need to be met (or you need to force a run by releasing all dependencies). To release a Hold off a job, enter the following command:

releaseHold --log_dir=l_d --job=Ff::Jj --family_dir=f_d [--log_date=d]

where l_d is the log directory and Ff is the family name and Jj is the job name and f_d is the family_directory. The log_date is an optional date in the YYYYMMDD format. If specified, that date's data will be used, instead of the current date's. A hold can only be released off a job if the job was in the 'Hold' state in the first place.

Releasing a Hold off a Job Via the Web Site

You can use the "Release Hold" button on the 'Status' or 'View Logs' page.