TaskForest 1.18 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News TaskForest 1.18 (Default branch)
# 1  
Old 03-06-2009
TaskForest 1.18 (Default branch)

TaskForest is a simple but expressive jobscheduler that allows you to chain jobs and tasksand to create time dependencies. It usesplain-text configuration files to specify taskdependencies. It comes with a built-in RESTful Web service. It was originally designed for a single machine, but support for multiple machines is planned.License: Artistic LicenseChanges:
The support for viewing log files on the Web site has improved, and the page layout has changed to make it more usable. A Web site bug that was preventing jobs from being marked or rerun correctly has been fixed. The Cache-Control header is now sent with every HTTP response, to greatly improve Web site performance under HTTPS when using the Firefox 3 browser.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
starting(7)						 Miscellaneous Information Manual					       starting(7)

NAME
starting - event signalling that a job is starting SYNOPSIS
starting JOB=JOB INSTANCE=INSTANCE [ENV]... DESCRIPTION
The starting event is generated by the Upstart init(8) daemon when a new instance of a job begins starting. The JOB environment variable contains the job name, and the INSTANCE environment variable contains the instance name which will be empty for single-instance jobs. init(8) will wait for all services started by this event to be running, all tasks started by this event to have finished and all jobs stopped by this event to be stopped before allowing the job to continue starting. This allows jobs to effectively insert themselves as dependencies of other jobs. The event is typically combined with the stopped(7) event by services. Job configuration files may use the export stanza to export environment variables from their own environment into the starting event. See init(5) for more details. EXAMPLE
A service that wishes to be running whenever another service would be running, started before and stopped after it, might use: start on starting apache stop on stopped apache A task that must be run before another task or service is started might use: start on starting postgresql SEE ALSO
started(7) stopping(7) stopped(7) init(5) Upstart 2009-07-09 starting(7)