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

Putting a Job on Hold

When you put a job on hold, it will not run duringthe 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 hold a job, enter the following command:

release --log_dir=l_d --job=Ff::Jj --family_dir=f_d [--log_date=date]

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 job will only be put on hold if it is in the 'Waiting' state.

Putting a Job on Hold Via the Web Site

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